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 had an issue out to have _http_post return a status code however due to the fact that we are sending POST requests in batches, the returned status code will only be that of the last batch.
We should have some logic to check:
If all batch status codes are the same and/or
If any code matches an undesired code and/or
return a full list of all status codes for all batches sent.
Additionally, we are returning a value from a private method that does not get used internally or externally. We should perhaps consider returning the status code/s from the send method as well after _http_post has been called.
The text was updated successfully, but these errors were encountered:
We had an issue out to have _http_post return a status code however due to the fact that we are sending POST requests in batches, the returned status code will only be that of the last batch.
We should have some logic to check:
Additionally, we are returning a value from a private method that does not get used internally or externally. We should perhaps consider returning the status code/s from the send method as well after _http_post has been called.
The text was updated successfully, but these errors were encountered: