From b7e197f8795943569bbed027e6da673bffc5f31d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 8 Oct 2025 21:11:08 +0200 Subject: [PATCH] fix: ensure simulator is reinit at configuration file change MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/charging-station/Bootstrap.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/charging-station/Bootstrap.ts b/src/charging-station/Bootstrap.ts index d7dcb119..d249efb5 100644 --- a/src/charging-station/Bootstrap.ts +++ b/src/charging-station/Bootstrap.ts @@ -513,6 +513,7 @@ export class Bootstrap extends EventEmitter { this.uiServer.stop() this.uiServerStarted = false } + this.initializeCounters() // FIXME: initialize worker implementation only if the worker section has changed this.initializeWorkerImplementation( Configuration.getConfigurationSection(ConfigurationSection.worker) -- 2.43.0