Skip to content

Commit 94e4b66

Browse files
authored
fix: fix typo in error msg (#4871)
Signed-off-by: FogDong <fog@bentoml.com>
1 parent e41dc2c commit 94e4b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bentoml/_internal/cloud/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _is_not_found(self, resp: httpx.Response) -> bool:
7777
def _check_resp(self, resp: httpx.Response) -> None:
7878
if resp.status_code >= 500:
7979
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"
80+
f"Oops, something went wrong with BentoCloud. Please report to us with trace ID <{resp.headers['x-trace-id']}>: https://bentoml.com/support"
8181
)
8282
if resp.status_code != 200:
8383
raise CloudRESTApiClientError(

0 commit comments

Comments
 (0)