From 0b2702bf539aebea09948fe5e9486a30135e4241 Mon Sep 17 00:00:00 2001 From: Justin Fudally Date: Wed, 25 Mar 2020 14:12:00 -0500 Subject: [PATCH] Throttle on no metrics/error --- go/logic/throttler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/logic/throttler.go b/go/logic/throttler.go index 6f9f4bb..0923c7b 100644 --- a/go/logic/throttler.go +++ b/go/logic/throttler.go @@ -104,7 +104,7 @@ func (this *Throttler) shouldThrottle() (result bool, reason string, reasonHint } } // Got here? No metrics indicates we need throttling. - return false, "", base.NoThrottleReasonHint + return true, "", base.NoThrottleReasonHint } // parseChangelogHeartbeat parses a string timestamp and deduces replication lag