From d73b9b8afd4a97bd5f997b9a7c66727f8c35bb48 Mon Sep 17 00:00:00 2001 From: Anton Chaporgin Date: Fri, 19 Jul 2024 11:36:36 +0300 Subject: [PATCH] removed redundant comment --- proxy/src/bin/proxy.rs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/proxy/src/bin/proxy.rs b/proxy/src/bin/proxy.rs index c0916247f1..5bcf5cc20e 100644 --- a/proxy/src/bin/proxy.rs +++ b/proxy/src/bin/proxy.rs @@ -322,22 +322,6 @@ async fn main() -> anyhow::Result<()> { ), aws_credentials_provider, )); - // let regional_redis_client = match (args.redis_host, args.redis_port) { - // (Some(host), Some(port)) => Some( - // ConnectionWithCredentialsProvider::new_with_credentials_provider( - // host, - // port, - // elasticache_credentials_provider.clone(), - // ), - // ), - // (None, None) => { - // warn!("Redis events from console are disabled"); - // None - // } - // _ => { - // bail!("redis-host and redis-port must be specified together"); - // } - // }; let regional_redis_client = match args.redis_auth_type.as_str() { "plain" => { match args.redis_notifications {