diff options
| author | Radtoo <56451+Radtoo@users.noreply.github.com> | 2022-02-13 00:53:35 +0100 |
|---|---|---|
| committer | Radtoo <56451+Radtoo@users.noreply.github.com> | 2022-02-13 00:53:35 +0100 |
| commit | 724ce04b1c6ab3f397e0a33add28b07906179482 (patch) | |
| tree | a74c73fa2ab1898b5d6631085583001882346236 | |
| parent | fbe7ed7927e63bdecf3527e5d96501e084b388fc (diff) | |
| download | seaweedfs-724ce04b1c6ab3f397e0a33add28b07906179482.tar.xz seaweedfs-724ce04b1c6ab3f397e0a33add28b07906179482.zip | |
We picked the second flag's name.
| -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 005dc98c2..e73f60a2b 100644 --- a/weed/shell/command_volume_fsck.go +++ b/weed/shell/command_volume_fsck.go @@ -65,7 +65,7 @@ func (c *commandVolumeFsck) Do(args []string, commandEnv *CommandEnv, writer io. findMissingChunksInFiler := fsckCommand.Bool("findMissingChunksInFiler", false, "see \"help volume.fsck\"") findMissingChunksInFilerPath := fsckCommand.String("findMissingChunksInFilerPath", "/", "used together with findMissingChunksInFiler") applyPurging := fsckCommand.Bool("reallyDeleteFromVolume", false, "<expert only!> after detection, delete missing data from volumes / delete missing file entries from filer") - purgeAbsent := fsckCommand.Bool("purgeAbsent", false, "<expert only!> delete missing file entries from filer if the corresponding volume is missing for any reason, please ensure all still existing/expected volumes are connected! used together with findMissingChunksInFiler") + purgeAbsent := fsckCommand.Bool("reallyDeleteFilerEntries", false, "<expert only!> delete missing file entries from filer if the corresponding volume is missing for any reason, please ensure all still existing/expected volumes are connected! used together with findMissingChunksInFiler") if err = fsckCommand.Parse(args); err != nil { return nil } |
