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
We have some lines that handles requests.exceptions.MissingSchema, but unfortunately, these lines will be never called because submission_details_request has a except clause for requests.exceptions.RequestException which is a superset of requests.exceptions.MissingSchema.
This means, if a submission has no result, the program shows the unintended error message "Could not establish a connection to EvalAI." instead of the intended error message "The Submission is yet to be evaluated."
The expected behavior
If a submission has no result, the program must show the intended error message "The Submission is yet to be evaluated.".
The text was updated successfully, but these errors were encountered:
The observed behavior
We have some lines that handles
requests.exceptions.MissingSchema
, but unfortunately, these lines will be never called becausesubmission_details_request
has aexcept
clause forrequests.exceptions.RequestException
which is a superset ofrequests.exceptions.MissingSchema
.This means, if a submission has no result, the program shows the unintended error message "Could not establish a connection to EvalAI." instead of the intended error message "The Submission is yet to be evaluated."
The expected behavior
If a submission has no result, the program must show the intended error message "The Submission is yet to be evaluated.".
The text was updated successfully, but these errors were encountered: