From 8646fc836191ec2f0b5c666200dd201d49d124a9 Mon Sep 17 00:00:00 2001 From: Anton Chaporgin Date: Fri, 19 Jul 2024 14:13:49 +0300 Subject: [PATCH] fix the bug --- proxy/src/bin/proxy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/bin/proxy.rs b/proxy/src/bin/proxy.rs index 5bcf5cc20e..e905bbb81b 100644 --- a/proxy/src/bin/proxy.rs +++ b/proxy/src/bin/proxy.rs @@ -354,7 +354,7 @@ async fn main() -> anyhow::Result<()> { }; let redis_notifications_client = if let Some(url) = &args.redis_notifications { - Some(ConnectionWithCredentialsProvider::new_with_static_credentials(url)) + Some(ConnectionWithCredentialsProvider::new_with_static_credentials(url.to_string())) } else { regional_redis_client.clone() };