From 4c1d4c8689c9d722910b432b849292db88e59b11 Mon Sep 17 00:00:00 2001 From: Alexander Friese Date: Fri, 3 Jan 2025 11:59:02 +0100 Subject: [PATCH] speedup command processing Signed-off-by: Alexander Friese --- .../openhab/binding/easee/internal/EaseeBindingConstants.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/org.openhab.binding.easee/src/main/java/org/openhab/binding/easee/internal/EaseeBindingConstants.java b/bundles/org.openhab.binding.easee/src/main/java/org/openhab/binding/easee/internal/EaseeBindingConstants.java index a0a24b5bae0..29db530657b 100644 --- a/bundles/org.openhab.binding.easee/src/main/java/org/openhab/binding/easee/internal/EaseeBindingConstants.java +++ b/bundles/org.openhab.binding.easee/src/main/java/org/openhab/binding/easee/internal/EaseeBindingConstants.java @@ -122,8 +122,8 @@ public class EaseeBindingConstants { public static final String CMD_VAL_RESUME_CHARGING = "resume_charging"; // web request constants - public static final long WEB_REQUEST_INITIAL_DELAY = 30; - public static final long WEB_REQUEST_INTERVAL = 5; + public static final long WEB_REQUEST_INITIAL_DELAY = 10; + public static final long WEB_REQUEST_INTERVAL = 1; public static final int WEB_REQUEST_QUEUE_MAX_SIZE = 20; public static final int WEB_REQUEST_TOKEN_EXPIRY_BUFFER_MINUTES = 5; public static final int WEB_REQUEST_TOKEN_MAX_AGE_MINUTES = 60;