From 4d049a744a98d982df36e4520816073d0e1f23f8 Mon Sep 17 00:00:00 2001 From: Alphonse Paix Date: Fri, 22 Aug 2025 16:29:11 +0200 Subject: [PATCH] Fix bug when reading environment variables --- src/configuration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configuration.rs b/src/configuration.rs index 4d31d45..46642e3 100644 --- a/src/configuration.rs +++ b/src/configuration.rs @@ -18,7 +18,7 @@ pub fn get_configuration() -> Result { .add_source( config::Environment::with_prefix("APP") .prefix_separator("_") - .prefix("__"), + .separator("__"), ) .build()?;