From c93bdfbc550a2814da15f13fce0af03e0d35927a Mon Sep 17 00:00:00 2001 From: Devan Date: Thu, 19 Dec 2024 12:16:48 -0600 Subject: [PATCH] feat: grammar typo --- tsdb/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsdb/config.go b/tsdb/config.go index 3d7a85a82fc..0490934f1bb 100644 --- a/tsdb/config.go +++ b/tsdb/config.go @@ -92,7 +92,7 @@ var SingleGenerationReasonText string = SingleGenerationReason() // when checked for full compaction. // 1048576000 is a magic number for bytes per gigabyte. func SingleGenerationReason() string { - return fmt.Sprintf("not fully compacted and not idle because single generation with more then 2 files under %d GB and more then 1 file(s) under aggressive compaction points per block count (%d points)", int(MaxTSMFileSize/1048576000), AggressiveMaxPointsPerBlock) + return fmt.Sprintf("not fully compacted and not idle because single generation with more than 2 files under %d GB and more than 1 file(s) under aggressive compaction points per block count (%d points)", int(MaxTSMFileSize/1048576000), AggressiveMaxPointsPerBlock) } // Config holds the configuration for the tsbd package.