From 5426d3992bbf30d8e78b9484e65f52a36abedd0a Mon Sep 17 00:00:00 2001 From: LFC <990479+MichaelScofield@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:34:34 +0800 Subject: [PATCH] Update src/servers/src/server.rs Co-authored-by: Weny Xu --- src/servers/src/server.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/servers/src/server.rs b/src/servers/src/server.rs index f1f37c94898a..b2627425b6f7 100644 --- a/src/servers/src/server.rs +++ b/src/servers/src/server.rs @@ -62,8 +62,8 @@ impl ServerHandlers { handlers.get(name).map(|x| x.1) } - /// Starts all the managed services. It will block until all the services are started. And it will - /// set the actual bound address to the service. + /// Starts all the managed services. It will block until all the services are started. + /// And it will set the actual bound address to the service. pub async fn start_all(&self) -> Result<()> { let mut handlers = self.handlers.write().await; try_join_all(handlers.values_mut().map(|(server, addr)| async move {