Skip to content

Commit

Permalink
fix: fixed ApiExecutor.sendRequest name in fetchMergedUrls
Browse files Browse the repository at this point in the history
  • Loading branch information
TangoBeeAkto committed Sep 21, 2024
1 parent 8906a1f commit 64cdbad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3136,7 +3136,7 @@ public Set<MergedUrls> fetchMergedUrls() {
OriginalHttpRequest request = new OriginalHttpRequest(url + "/fetchMergedUrls", "", "POST", "", headers, "");

try {
OriginalHttpResponse response = ApiExecutor.sendRequestBackOff(request, true, null, false, null);
OriginalHttpResponse response = ApiExecutor.sendRequest(request, true, null, false, null);
String responsePayload = response.getBody();
if (response.getStatusCode() != 200 || responsePayload == null) {
loggerMaker.errorAndAddToDb("non 2xx response in fetchMergedUrls", LoggerMaker.LogDb.RUNTIME);
Expand Down

0 comments on commit 64cdbad

Please sign in to comment.