diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-07-28 22:25:04 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-07-28 22:25:04 -0700 |
| commit | 4deac06da0fc2dd283530b4763793116042ccbde (patch) | |
| tree | dc759049079fb386f4694f3567a6180b28518adf | |
| parent | ddff849ea6207d301c2f20c9e8117ef1d5b7d477 (diff) | |
| download | seaweedfs-4deac06da0fc2dd283530b4763793116042ccbde.tar.xz seaweedfs-4deac06da0fc2dd283530b4763793116042ccbde.zip | |
log fix
| -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 bd3be4d89..27c253209 100644 --- a/weed/shell/command_volume_fsck.go +++ b/weed/shell/command_volume_fsck.go @@ -103,7 +103,7 @@ func (c *commandVolumeFsck) Do(args []string, commandEnv *CommandEnv, writer io. } // for each volume, check filer file ids if err = c.findFilerChunksMissingInVolumeServers(volumeIdToVInfo, tempFolder, writer, *verbose, applyPurging); err != nil { - return fmt.Errorf("findExtraChunksInVolumeServers: %v", err) + return fmt.Errorf("findFilerChunksMissingInVolumeServers: %v", err) } } else { // collect all filer file ids |
