mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-03 20:02:54 +00:00
fix: typo for existed -> exited (#6547)
chore: `existed` -> `exited` Signed-off-by: zyy17 <zyylsxm@gmail.com>
This commit is contained in:
@@ -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");
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user