We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e41dc2c commit 94e4b66Copy full SHA for 94e4b66
src/bentoml/_internal/cloud/client.py
@@ -77,7 +77,7 @@ def _is_not_found(self, resp: httpx.Response) -> bool:
77
def _check_resp(self, resp: httpx.Response) -> None:
78
if resp.status_code >= 500:
79
raise CloudRESTApiClientError(
80
- 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"
81
)
82
if resp.status_code != 200:
83
0 commit comments