Skip to content

Commit

Permalink
[Serve] Remove spurious capitalization (#36746)
Browse files Browse the repository at this point in the history
This change removes unnecessary capitalization in a status message.

Signed-off-by: Shreyas Krishnaswamy <shrekris@anyscale.com>
  • Loading branch information
shrekris-anyscale authored Jun 23, 2023
1 parent df42883 commit 7919407
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/ray/serve/_private/deployment_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -1645,9 +1645,9 @@ def _check_curr_status(self) -> Tuple[bool, bool]:
name=self._name,
status=DeploymentStatus.UNHEALTHY,
message=(
f"The Deployment failed to start {failed_to_start_count} times "
"in a row. This may be due to a problem with the deployment "
"constructor or the initial health check failing. See "
f"The deployment failed to start {failed_to_start_count} times "
"in a row. This may be due to a problem with its "
"constructor or initial health check failing. See "
"controller logs for details. Retrying after "
f"{self._backoff_time_s} seconds. Error:\n"
f"{self._replica_constructor_error_msg}"
Expand Down

0 comments on commit 7919407

Please sign in to comment.