diff --git a/README.md b/README.md index aa8ab15..f00a8b6 100644 --- a/README.md +++ b/README.md @@ -55,4 +55,4 @@ By default, giganto reads the config file from the following directories: ## Copyright -* Copyright 2023 EINSIS, Inc. +* Copyright 2023 ClumL Inc. diff --git a/src/subscribe.rs b/src/subscribe.rs index a29541c..7439103 100644 --- a/src/subscribe.rs +++ b/src/subscribe.rs @@ -332,7 +332,7 @@ async fn publish_connection_control( 'connection: loop { let connection_notify = Arc::new(Notify::new()); match publish_connect(endpoint, server_addr, server_name, version).await { - Ok((conn, send)) => loop { + Ok((conn, send)) => { let req_send = Arc::new(Mutex::new(send)); for req_pol in active_policy_list.read().await.values() { if let Err(e) = process_network_stream( @@ -426,7 +426,7 @@ async fn publish_connection_control( } } } - }, + } Err(e) => { if let Some(e) = e.downcast_ref::() { match e {