Skip to content
Snippets Groups Projects
Commit dd8e07df authored by Mykyta Savchuk's avatar Mykyta Savchuk
Browse files

retry batch api in case of 429 response code

parent 692a3304
No related branches found
No related tags found
1 merge request!817retry batch api in case of 429 response code
Pipeline #284588 failed
......@@ -70,6 +70,11 @@ public class RetryPolicy {
if (defaultResponseRetry(response)) return true;
if (response.getResponseCode() == 429) {
log.info("Storage batch API 429 retry");
return true;
}
JsonObject jsonObject = new JsonParser().parse(response.getBody()).getAsJsonObject();
JsonElement notFoundElement = (JsonArray) jsonObject.get(RECORD_NOT_FOUND);
if (notFoundElement == null ||
......
......@@ -223,4 +223,15 @@ public class RetryPolicyTest {
assertTrue(value);
}
@Test
public void shouldReturnTrue_when_429ResponseCode_for_batchRetryPolicy() {
HttpResponse response=new HttpResponse();
response.setBody(JSON_RESPONSE1_WITHOUT_NOT_FOUND);
response.setResponseCode(429);
boolean value=retryPolicy.batchRetryPolicy(response);
assertTrue(value);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment