Tweaked a trace event suppression time.

This commit is contained in:
Stephen Atherton 2018-01-24 19:08:24 -08:00
parent 4dec5423f7
commit 9fd2a8df3d
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ ACTOR Future<Reference<HTTP::Response>> doRequest_impl(Reference<BlobStoreEndpoi
event.detail("Verb", verb)
.detail("Resource", resource)
.detail("ThisTry", thisTry)
.suppressFor(15, true);
.suppressFor(60, true);
// If r is not valid or not code 429 then increment the try count. 429's will not count against the attempt limit.
if(!r || r->code != 429)