I have been using reconnect option below.
const options = {
useSSL: false,
keepAliveInterval: 60,
reconnect: true,
onSuccess: this.onConnect,
};
client.disconnect();
but, our system that is connected to various systems under one name, even if it try to disconnect during duplicate connections, it will continue to try to reconnect.
Is there any way to solve this?

I have been using reconnect option below.
client.disconnect();
but, our system that is connected to various systems under one name, even if it try to disconnect during duplicate connections, it will
continueto try to reconnect.Is there any way to solve this?