From 8c19633255c2a4108bd5e8ce98f3ca6bd67b10df Mon Sep 17 00:00:00 2001 From: bwplotka Date: Fri, 20 Jun 2025 14:57:17 +0100 Subject: [PATCH] v3 test. Signed-off-by: bwplotka --- 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 edcb92a719..10682f771a 100644 --- a/tsdb/index/index.go +++ b/tsdb/index/index.go @@ -423,7 +423,7 @@ func (w *Writer) ensureStage(s indexWriterStage) error { func (w *Writer) writeMeta() error { w.buf1.Reset() w.buf1.PutBE32(MagicIndex) - w.buf1.PutByte(FormatV2) + w.buf1.PutByte(FormatV3) // Testing compatibility. return w.write(w.buf1.Get()) }