Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SkyServe] Minor hint wording change. #2940

Merged
merged 1 commit into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sky/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sky/serve/load_balancer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.')

Expand Down