Skip to content

Commit

Permalink
[mqtt] PeriodicReconnectStrategy: fix fields init (#1203)
Browse files Browse the repository at this point in the history
Fixes #1200

Signed-off-by: Laurent Garnier <lg.hc@free.fr>
  • Loading branch information
lolodomo authored and cweitkamp committed Nov 11, 2019
1 parent b1e949c commit 16a9ff0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class PeriodicReconnectStrategy extends AbstractReconnectStrategy {
* Use a default 60s reconnect frequency and try the first reconnect after 10s.
*/
public PeriodicReconnectStrategy() {
this(10000, 60000);
this(60000, 10000);
}

/**
Expand Down

0 comments on commit 16a9ff0

Please sign in to comment.