removed redundant comment

This commit is contained in:
Anton Chaporgin
2024-07-19 11:36:36 +03:00
parent 095af95bd9
commit d73b9b8afd

View File

@@ -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 {