We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a248134 commit 7f18d59Copy full SHA for 7f18d59
fdbrpc/BlobStore.actor.cpp
@@ -413,6 +413,10 @@ ACTOR Future<Reference<HTTP::Response>> doRequest_impl(Reference<BlobStoreEndpoi
413
.detail("ThisTry", thisTry)
414
.suppressFor(5, true);
415
416
+ // If r is not valid or not code 429 then increment the try count. 429's will not count against the attempt limit.
417
+ if(!r || r->code != 429)
418
+ ++thisTry;
419
+
420
// We will wait delay seconds before the next retry, start with nextRetryDelay.
421
double delay = nextRetryDelay;
422
// Double but limit the *next* nextRetryDelay.
0 commit comments