diff --git a/examples/python/helloworld/async_greeter_server_with_graceful_shutdown.py b/examples/python/helloworld/async_greeter_server_with_graceful_shutdown.py index ebc03f8d9a0..737f42b7a65 100644 --- a/examples/python/helloworld/async_greeter_server_with_graceful_shutdown.py +++ b/examples/python/helloworld/async_greeter_server_with_graceful_shutdown.py @@ -45,7 +45,7 @@ async def serve() -> None: async def server_graceful_shutdown(): logging.info("Starting graceful shutdown...") - # Shuts down the server with 0 seconds of grace period. During the + # Shuts down the server with 5 seconds of grace period. During the # grace period, the server won't accept new connections and allow # existing RPCs to continue within the grace period. await server.stop(5)