fix: typo for existed -> exited (#6547)

chore: `existed` -> `exited`

Signed-off-by: zyy17 <zyylsxm@gmail.com>
This commit is contained in:
zyy17
2025-07-17 20:27:29 +08:00
committed by GitHub
parent 37dc057423
commit 90ababca97
2 changed files with 2 additions and 2 deletions

View File

@@ -266,7 +266,7 @@ impl Server for GrpcServer {
let mut shutdown_tx = self.shutdown_tx.lock().await;
if let Some(tx) = shutdown_tx.take() {
if tx.send(()).is_err() {
info!("Receiver dropped, the grpc server has already existed");
info!("Receiver dropped, the grpc server has already exited");
}
}
info!("Shutdown grpc server");

View File

@@ -1146,7 +1146,7 @@ impl Server for HttpServer {
let mut shutdown_tx = self.shutdown_tx.lock().await;
if let Some(tx) = shutdown_tx.take() {
if tx.send(()).is_err() {
info!("Receiver dropped, the HTTP server has already existed");
info!("Receiver dropped, the HTTP server has already exited");
}
}
info!("Shutdown HTTP server");