Change UnsupportedMask to not clash with OutOfOrderMask

Signed-off-by: Ganesh Vernekar <ganeshvern@gmail.com>
This commit is contained in:
Ganesh Vernekar 2023-03-22 13:19:49 +05:30
parent 41649ceb1b
commit 7a33f5c2ca
No known key found for this signature in database
GPG key ID: F056451B52F1DC34

View file

@ -595,7 +595,7 @@ func writeUnsupportedChunk(t *testing.T, idx int, hrw *ChunkDiskMapper) (seriesR
}
const (
UnsupportedMask = 0b11000000
UnsupportedMask = 0b01000000
EncUnsupportedXOR = chunkenc.EncXOR | UnsupportedMask
)