From e7d11ddf7179d0eb4204298640ae6c9cf01ac536 Mon Sep 17 00:00:00 2001 From: zosimovaa Date: Sat, 21 Feb 2026 23:38:48 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=D0=BD=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config_manager/v2/core/manager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config_manager/v2/core/manager.py b/src/config_manager/v2/core/manager.py index 505fd99..24d6abf 100644 --- a/src/config_manager/v2/core/manager.py +++ b/src/config_manager/v2/core/manager.py @@ -41,6 +41,8 @@ class ConfigManagerV2: # Интервалы опроса (минуты): только здесь, в конфиг не пишем self.update_interval = int(os.environ.get("UPDATE_INTERVAL", self.DEFAULT_UPDATE_INTERVAL)) self.work_interval = int(os.environ.get("WORK_INTERVAL", self.DEFAULT_WORK_INTERVAL)) + print(f"self.update_interval {self.update_interval}") + print(f"self.work_interval {self.work_interval}") self._loader = ConfigLoader(path) self._log_manager = log_manager or LogManager()