diff options
| author | chrislu <chris.lu@gmail.com> | 2022-10-28 12:53:19 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-10-28 12:53:19 -0700 |
| commit | ea2637734a13a08d11d4f26e80c1324664bf7ffc (patch) | |
| tree | 6708b9a0d07a0518a6fdf151d59bf3fc46053430 /weed/shell/command_volume_fsck.go | |
| parent | 1e0d64c04883a8d7b09677e9721f9e189743e2f3 (diff) | |
| download | seaweedfs-ea2637734a13a08d11d4f26e80c1324664bf7ffc.tar.xz seaweedfs-ea2637734a13a08d11d4f26e80c1324664bf7ffc.zip | |
refactor filer proto chunk variable from mtime to modified_ts_ns
Diffstat (limited to 'weed/shell/command_volume_fsck.go')
| -rw-r--r-- | weed/shell/command_volume_fsck.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_volume_fsck.go b/weed/shell/command_volume_fsck.go index 90e215790..854929998 100644 --- a/weed/shell/command_volume_fsck.go +++ b/weed/shell/command_volume_fsck.go @@ -209,7 +209,7 @@ func (c *commandVolumeFsck) collectFilerFileIdAndPaths(dataNodeVolumeIdToVInfo m } dataChunks = append(dataChunks, manifestChunks...) for _, chunk := range dataChunks { - if chunk.Mtime > collectMtime { + if chunk.ModifiedTsNs > collectMtime { continue } outputChan <- &Item{ |
