From c00bcfbd1a4202d0a40058936734b2b6367ca8cb Mon Sep 17 00:00:00 2001 From: Zongheng Yang Date: Thu, 4 Jan 2024 09:30:55 -0800 Subject: [PATCH] [SkyServe] Minor hint wording change. --- sky/cli.py | 2 +- sky/serve/load_balancer.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sky/cli.py b/sky/cli.py index f906502a506..e457269e0b4 100644 --- a/sky/cli.py +++ b/sky/cli.py @@ -4359,7 +4359,7 @@ def serve_status(all: bool, endpoint: bool, service_names: List[str]): - ``CONTROLLER_INIT``: The controller is initializing. - ``REPLICA_INIT``: The controller has finished initializing, and there are - no available replicas for now. This also indicates that no replica failure + no ready replicas for now. This also indicates that no replica failure has been detected. - ``CONTROLLER_FAILED``: The controller failed to start or is in an abnormal diff --git a/sky/serve/load_balancer.py b/sky/serve/load_balancer.py index 01c0ff6d028..b3b8fe5403e 100644 --- a/sky/serve/load_balancer.py +++ b/sky/serve/load_balancer.py @@ -83,7 +83,7 @@ async def _redirect_handler(self, request: fastapi.Request): if ready_replica_url is None: raise fastapi.HTTPException(status_code=503, - detail='No available replicas. ' + detail='No ready replicas. ' 'Use "sky serve status [SERVICE_NAME]" ' 'to check the replica status.')