From 32a4435be1185f59d2e4bc3e3bbe8588d2f3dece Mon Sep 17 00:00:00 2001 From: donpat1to Date: Fri, 29 Aug 2025 12:22:57 +0200 Subject: [PATCH] fixed separator --- WatcherAgent/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WatcherAgent/src/config.rs b/WatcherAgent/src/config.rs index f553665..eaf1f87 100644 --- a/WatcherAgent/src/config.rs +++ b/WatcherAgent/src/config.rs @@ -15,7 +15,7 @@ impl AppConfig { dotenvy::dotenv().ok(); let cfg = Config::builder() - .add_source(config::Environment::with_prefix("WATCHER").separator("_")) + .add_source(config::Environment::with_prefix("WATCHER").separator("__")) .build()?; println!("Configuration loaded: {cfg:#?}");