From 94e4b66195e5d72fb21b09aaa56b52d16c111df3 Mon Sep 17 00:00:00 2001 From: Tianxin Dong Date: Fri, 19 Jul 2024 09:07:05 +0800 Subject: [PATCH] fix: fix typo in error msg (#4871) Signed-off-by: FogDong --- src/bentoml/_internal/cloud/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bentoml/_internal/cloud/client.py b/src/bentoml/_internal/cloud/client.py index b85860495de..6fa6777469e 100644 --- a/src/bentoml/_internal/cloud/client.py +++ b/src/bentoml/_internal/cloud/client.py @@ -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(