From d3cb39044e7e2e49888c102b6afaf34cabb75a51 Mon Sep 17 00:00:00 2001 From: Filip Petkovski Date: Wed, 25 May 2022 10:40:36 +0200 Subject: [PATCH] Fix typo in symbol table size exceeded error message (#10746) This commit fixes a typo when reporting an error that the the symbols table size has been exceeded. Signed-off-by: Filip Petkovski --- tsdb/index/index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsdb/index/index.go b/tsdb/index/index.go index fc1faf5ee..29295c45f 100644 --- a/tsdb/index/index.go +++ b/tsdb/index/index.go @@ -526,7 +526,7 @@ func (w *Writer) finishSymbols() error { symbolTableSize := w.f.pos - w.toc.Symbols - 4 // The symbol table's part is 4 bytes. So the total symbol table size must be less than or equal to 2^32-1 if symbolTableSize > math.MaxUint32 { - return errors.Errorf("symbol table size exceeds 4 bytes: %d", symbolTableSize) + return errors.Errorf("symbol table size exceeds %d bytes: %d", uint32(math.MaxUint32), symbolTableSize) } // Write out the length and symbol count.