From 98f5aa8d9ce0cb1ba20fd6d703015907ce22b7d8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 14 Jan 2024 14:10:19 +0100 Subject: [PATCH] refactor: set CSs stop timeout to 60s MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/utils/Constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index 2223c5ef..0cfa5f99 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -81,7 +81,7 @@ export class Constants { static readonly MAX_RANDOM_INTEGER = 281474976710654 - static readonly STOP_CHARGING_STATIONS_TIMEOUT = 120000 // Ms + static readonly STOP_CHARGING_STATIONS_TIMEOUT = 60000 // Ms static readonly EMPTY_FROZEN_OBJECT = Object.freeze({}) static readonly EMPTY_FUNCTION = Object.freeze(() => { -- 2.34.1