From 121adb47195fb1ed4df41dd9fbff0b76833be5fe Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Sun, 24 Sep 2023 15:44:15 -0700 Subject: [PATCH] Bump start interval for cleanup check Signed-off-by: Derek Collison --- server/consumer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/consumer.go b/server/consumer.go index a5fd72a2..b3b8b34b 100644 --- a/server/consumer.go +++ b/server/consumer.go @@ -1564,7 +1564,7 @@ func (o *consumer) deleteNotActive() { // Don't think this needs to be a monitored go routine. go func() { const ( - startInterval = 5 * time.Second + startInterval = 30 * time.Second maxInterval = 5 * time.Minute ) jitter := time.Duration(rand.Int63n(int64(startInterval)))