Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
fix(MQTT): change time to reconnect to every 10 minutes if is down
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelje committed Jul 20, 2017
1 parent 1de18f2 commit aa00e70
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -203,7 +203,7 @@ public void run() {
}
}
};
timer.schedule(timerTask, 0, 10000);
timer.schedule(timerTask, 0, 600000); // retry every 10 minutes
}

/**
Expand Down

0 comments on commit aa00e70

Please sign in to comment.