Merge pull request #8664 from sfc-gh-tclinkenbeard/increase-suppression-interval

Increase suppression interval for `GrvProxyTransactionTagThrottler_MultipleTags`
This commit is contained in:
Trevor Clinkenbeard 2022-11-06 08:48:41 -08:00 committed by GitHub
commit 8ee0411637
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ void GrvProxyTagThrottler::addRequest(GetReadVersionRequest const& req) {
// SERVER_KNOBS->ENFORCE_TAG_THROTTLING_ON_PROXIES is enabled, there may be
// unexpected behaviour, because only one tag is used for throttling.
TraceEvent(SevWarnAlways, "GrvProxyTagThrottler_MultipleTags")
.suppressFor(1.0)
.suppressFor(60.0)
.detail("NumTags", req.tags.size())
.detail("UsingTag", printable(tag));
}