You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"{e.message}: Rate limit exceeded, please try again later."
33
+
f"{e.message}: Rate limit exceeded, please try again later.",
34
+
trace_id=trace_id,
33
35
)
34
36
elife.status==Code.canceled:
35
37
returnTimeoutException(
36
-
f"{e.message}: This error is likely due to exceeding 'request_timeout'. You can pass the request timeout value as an option when making the request."
38
+
f"{e.message}: This error is likely due to exceeding 'request_timeout'. You can pass the request timeout value as an option when making the request.",
39
+
trace_id=trace_id,
37
40
)
38
41
elife.status==Code.deadline_exceeded:
39
42
returnTimeoutException(
40
-
f"{e.message}: This error is likely due to exceeding 'timeout' — the total time a long running request (like process or directory watch) can be active. It can be modified by passing 'timeout' when making the request. Use '0' to disable the timeout."
43
+
f"{e.message}: This error is likely due to exceeding 'timeout' — the total time a long running request (like process or directory watch) can be active. It can be modified by passing 'timeout' when making the request. Use '0' to disable the timeout.",
f"{message}: This error is likely due to sandbox timeout. You can modify the sandbox timeout by passing 'timeout' when starting the sandbox or calling '.set_timeout' on the sandbox with the desired timeout."
3
+
f"{message}: This error is likely due to sandbox timeout. You can modify the sandbox timeout by passing 'timeout' when starting the sandbox or calling '.set_timeout' on the sandbox with the desired timeout.",
4
+
trace_id=trace_id,
4
5
)
5
6
6
7
@@ -23,7 +24,18 @@ class SandboxException(Exception):
0 commit comments