From a59f7a10b76670e7eabbd5aad66a47d72ed5b89b Mon Sep 17 00:00:00 2001 From: Oto Macenauer Date: Fri, 5 Sep 2025 17:07:12 +0200 Subject: [PATCH] Fix config file name --- src/event_gate_lambda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event_gate_lambda.py b/src/event_gate_lambda.py index 282cdac..8f5d64d 100644 --- a/src/event_gate_lambda.py +++ b/src/event_gate_lambda.py @@ -54,7 +54,7 @@ TOPICS["public.cps.za.test"] = json.load(file) logger.debug("Loaded TOPICS") -with open("conf/config.dev.json", "r") as file: +with open("conf/config.json", "r") as file: CONFIG = json.load(file) logger.debug("Loaded main CONFIG")