From c969492830087916a87271fd0db20caba69ab2b7 Mon Sep 17 00:00:00 2001 From: Barry Botha Date: Sun, 5 Oct 2025 22:50:28 +0300 Subject: [PATCH] chore(config): drop Environment separator; env still overrides TOML by order --- src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index d9af2d3..8ce859e 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -68,7 +68,7 @@ pub async fn construct_mongodb_conn(url: &str) -> Arc> { pub async fn construct_redis_conn(url: &str) -> Arc> { let redis_conn = match RedisCacheConn::init(url).await { Ok(conn) => conn, - Err(e) => panic!("Failed to connect to MongoDB with error: {}", e), + Err(e) => panic!("Failed to connect to Redis with error: {}", e), }; Arc::new(Mutex::new(redis_conn))