diff --git a/go/vt/vttablet/tabletserver/throttle/check.go b/go/vt/vttablet/tabletserver/throttle/check.go index 3373e79194b..1a00169f3bd 100644 --- a/go/vt/vttablet/tabletserver/throttle/check.go +++ b/go/vt/vttablet/tabletserver/throttle/check.go @@ -128,7 +128,7 @@ func (check *ThrottlerCheck) checkAppMetricResult(ctx context.Context, appName s statusCode = http.StatusTooManyRequests // 429 err = base.ErrThresholdExceeded - if !flags.LowPriority && !flags.ReadCheck && throttlerapp.VitessName.Equals(appName) { + if !flags.LowPriority && !flags.ReadCheck && !throttlerapp.VitessName.Equals(appName) { // low priority requests will henceforth be denied go check.throttler.nonLowPriorityAppRequestsThrottled.SetDefault("", true) }