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 9e95e3f commit d350070Copy full SHA for d350070
labelbox/client.py
@@ -304,6 +304,8 @@ def upload_data(self,
304
if response.status_code == 502:
305
error_502 = '502 Bad Gateway'
306
raise labelbox.exceptions.InternalServerError(error_502)
307
+ elif response.status_code == 503:
308
+ raise labelbox.exceptions.InternalServerError(response.text)
309
310
try:
311
file_data = response.json().get("data", None)
0 commit comments