Skip to content

Commit

Permalink
[max] increase delay (openhab#7987)
Browse files Browse the repository at this point in the history
This prevents excessive updates for temperature changes and restores the
old behaviour

Fixes issue in:
https://community.openhab.org/t/basic-ui-setpoint-issue/101167

Signed-off-by: Marcel Verpaalen <[email protected]>
  • Loading branch information
marcelrv authored and andrewfg committed Aug 31, 2020
1 parent 51e645e commit 2ad8a08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ public void run() {
logger.debug("Error sending command {} to MAX! Cube at IP: {}", sendCommand, ipAddress);
}
}
Thread.sleep(50);
Thread.sleep(5000);
}
} catch (InterruptedException e) {
logger.debug("Stopping queueConsumer");
Expand Down

0 comments on commit 2ad8a08

Please sign in to comment.