From 16a9ff0877f37aa82d484a6f7134954c724d4e27 Mon Sep 17 00:00:00 2001 From: lolodomo Date: Mon, 11 Nov 2019 22:24:50 +0100 Subject: [PATCH] [mqtt] PeriodicReconnectStrategy: fix fields init (#1203) Fixes #1200 Signed-off-by: Laurent Garnier --- .../io/transport/mqtt/reconnect/PeriodicReconnectStrategy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.core.io.transport.mqtt/src/main/java/org/eclipse/smarthome/io/transport/mqtt/reconnect/PeriodicReconnectStrategy.java b/bundles/org.openhab.core.io.transport.mqtt/src/main/java/org/eclipse/smarthome/io/transport/mqtt/reconnect/PeriodicReconnectStrategy.java index 0f604aa83d2..028a5166f19 100644 --- a/bundles/org.openhab.core.io.transport.mqtt/src/main/java/org/eclipse/smarthome/io/transport/mqtt/reconnect/PeriodicReconnectStrategy.java +++ b/bundles/org.openhab.core.io.transport.mqtt/src/main/java/org/eclipse/smarthome/io/transport/mqtt/reconnect/PeriodicReconnectStrategy.java @@ -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); } /**