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
Sometimes a curl error could be caused by an upload failure (e.g. error 55). This currently raises an error and quits, but it could be handled by the retries so that there are multiple chances for it to succeed.
This seems to be cause if curl errors in line 502:
subprocess.check_output(curl_cmd)
This should be converted to a try statement. The specific exception is subprocess.CalledProcessError. See https://pastebin.com/wwZZQgGN for an example error.
The text was updated successfully, but these errors were encountered:
Sometimes a curl error could be caused by an upload failure (e.g. error 55). This currently raises an error and quits, but it could be handled by the retries so that there are multiple chances for it to succeed.
This seems to be cause if
curl
errors in line 502:This should be converted to a try statement. The specific exception is
subprocess.CalledProcessError
. See https://pastebin.com/wwZZQgGN for an example error.The text was updated successfully, but these errors were encountered: