diff options
| author | chrislu <chris.lu@gmail.com> | 2025-03-31 21:25:51 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2025-03-31 21:25:51 -0700 |
| commit | 1af0b282db8c38fb586e707b910ec54351a15590 (patch) | |
| tree | d6ed1bc3924fed4f119e7187ff092369ca81ee9c | |
| parent | 9d482a8da9e212d44049b9fe220034bd9e66155d (diff) | |
| download | seaweedfs-1af0b282db8c38fb586e707b910ec54351a15590.tar.xz seaweedfs-1af0b282db8c38fb586e707b910ec54351a15590.zip | |
skip logs
| -rw-r--r-- | weed/mount/page_writer/page_chunk_swapfile.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/mount/page_writer/page_chunk_swapfile.go b/weed/mount/page_writer/page_chunk_swapfile.go index bdd941117..dd9781b68 100644 --- a/weed/mount/page_writer/page_chunk_swapfile.go +++ b/weed/mount/page_writer/page_chunk_swapfile.go @@ -140,7 +140,7 @@ func (sc *SwapFileChunk) ReadDataAt(p []byte, off int64, tsNs int64) (maxStop in } maxStop = max(maxStop, logicStop) - if t.TsNs >= tsNs { + if t.TsNs > tsNs { println("read new data2", t.TsNs-tsNs, "ns") } } |
