Skip to content

Commit

Permalink
fix: fix typo in error msg (#4871)
Browse files Browse the repository at this point in the history
Signed-off-by: FogDong <fog@bentoml.com>
  • Loading branch information
FogDong authored Jul 19, 2024
1 parent e41dc2c commit 94e4b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bentoml/_internal/cloud/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _is_not_found(self, resp: httpx.Response) -> bool:
def _check_resp(self, resp: httpx.Response) -> None:
if resp.status_code >= 500:
raise CloudRESTApiClientError(
f"Oops, something went wrong with BentoCloud. Please report to use with trace ID <{resp.headers['x-trace-id']}>: https://bentoml.com/support"
f"Oops, something went wrong with BentoCloud. Please report to us with trace ID <{resp.headers['x-trace-id']}>: https://bentoml.com/support"
)
if resp.status_code != 200:
raise CloudRESTApiClientError(
Expand Down

0 comments on commit 94e4b66

Please sign in to comment.