Skip to content

Commit

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

Signed-off-by: Laurent Garnier <[email protected]>
GitOrigin-RevId: 16a9ff0
  • Loading branch information
lolodomo authored and splatch committed Jul 11, 2023
1 parent a7a4d32 commit 42ea967
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 42ea967

Please sign in to comment.