eclipse-paho / eclipse-paho/paho.mqtt.javascript
infinite reconect ( calll onConnect )
Open
- Dominant language
- JavaScript
- Stars
- 1.2k
- Forks
- 466
- PR merge metrics
- No merged PRs in 30d
Description
I have been using reconnect option below.
```js
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?

Contributor guide
Assessment
This issue has not been assessed yet.