Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
api/mqtt/connector.js: disable pingpong protocol in mqtt. It leads to…
Browse files Browse the repository at this point in the history
… unneccessary connection disruptions.

Signed-off-by: Marcel Wagner <[email protected]>
  • Loading branch information
wagmarcel authored and srware committed Mar 31, 2020
1 parent 471318e commit 4c3d026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/mqtt/connector.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function Broker(conf) {
};
me.iamHealthyTopic = "server/{hash}/healthy";
me.isLive = false;
me.pingActivate = true;
me.pingActivate = false;
me.client = {
connected: false,
end: function() {}
Expand Down

0 comments on commit 4c3d026

Please sign in to comment.