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
the line with and (response.status != 400 and response.status != 404 and response != 422) should actually have response.status != 422 as the last term.
As written, the consequence is that we may not be sleeping before retrying the request.
The text was updated successfully, but these errors were encountered:
In this function https://github.com/ua-snap/data-api/blob/7a11164ae1dec5d561a8c98828fd752d1d8b8d3b/routes/eds.py#L34C1-L52C1
the line with
and (response.status != 400 and response.status != 404 and response != 422)
should actually haveresponse.status != 422
as the last term.As written, the consequence is that we may not be sleeping before retrying the request.
The text was updated successfully, but these errors were encountered: