Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Catch error 502 that is thrown for analysis errors #285

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sigridci/sigridci/sigrid_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ def retry(self, operation, *, attempts=5, allow404=False, allowEmpty=True):
else:
UploadLog.log(f"The system no longer exists (HTTP status {e.code})")
sys.exit(1)
elif e.code == 502:
UploadLog.log("Something went wrong during analysis at SIG (could be an issue in `sigrid.yaml`, please review)")
sys.exit(1)
elif allow404 and e.code == 404:
return False

Expand Down
Loading