From 1cb47cd3f721a299363d160b2a3278cec8767f18 Mon Sep 17 00:00:00 2001 From: Dimitar Dimitrov Date: Wed, 1 Nov 2023 14:25:51 +0100 Subject: [PATCH] Attempt to remove unused revive linter directive --- tsdb/symbols_batch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsdb/symbols_batch.go b/tsdb/symbols_batch.go index 4ecc66bf02..3d2b9dd16f 100644 --- a/tsdb/symbols_batch.go +++ b/tsdb/symbols_batch.go @@ -99,7 +99,7 @@ func (f *symbolFlushers) loop() { } } - for range f.jobs { //nolint:revive // This "empty" block is intentional + for range f.jobs { // drain the channel, don't do more flushing. only used when error occurs. } }