From 7de2cf299b141c2668b26c24b87f2d2fa82a7f89 Mon Sep 17 00:00:00 2001 From: Devan Date: Mon, 16 Dec 2024 14:56:09 -0600 Subject: [PATCH] feat: remove typo --- tsdb/engine/tsm1/compact.go | 1 - 1 file changed, 1 deletion(-) diff --git a/tsdb/engine/tsm1/compact.go b/tsdb/engine/tsm1/compact.go index a322631e337..63eee35f693 100644 --- a/tsdb/engine/tsm1/compact.go +++ b/tsdb/engine/tsm1/compact.go @@ -366,7 +366,6 @@ func (c *DefaultPlanner) PlanOptimize() ([]CompactionGroup, int64, int64) { // If there is a single generation, no tombstones, and the entire group size (all TSM files in the generation) // is over or equal to 2 GB (Max TSM file size) there is nothing to do and we will return. - // for more information regarding this logic. if len(generations) == 1 && generations[0].size() >= uint64(maxTSMFileSize) && !generations.hasTombstones() { return nil, 0, 0 }