fix when two consecutive chunks with the same modified_ts_ns

fix https://github.com/seaweedfs/seaweedfs/issues/5276
This commit is contained in:
Chris Lu
2024-02-04 09:22:24 -08:00
parent 0b49c16361
commit 56df44845f
2 changed files with 17 additions and 2 deletions

View File

@@ -38,10 +38,10 @@ func readResolvedChunks(chunks []*filer_pb.FileChunk, startOffset int64, stopOff
return int(a.ts - b.ts)
}
if a.isStart {
return -1
return 1
}
if b.isStart {
return 1
return -1
}
return 0
})