diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2024-05-21 21:45:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-21 21:45:29 -0700 |
| commit | cfcf383ee7c525aa99187ec45a1a3506ae951712 (patch) | |
| tree | c35d03d8711c764a44ed4c2e8c7c7ac889f75bd4 | |
| parent | a9b057389f70b1f72b0326ab501cc8ab4e1108e8 (diff) | |
| download | seaweedfs-cfcf383ee7c525aa99187ec45a1a3506ae951712.tar.xz seaweedfs-cfcf383ee7c525aa99187ec45a1a3506ae951712.zip | |
fix wrong prefix example
| -rw-r--r-- | weed/shell/command_fs_meta_load.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_meta_load.go b/weed/shell/command_fs_meta_load.go index bc71c1533..5f6559867 100644 --- a/weed/shell/command_fs_meta_load.go +++ b/weed/shell/command_fs_meta_load.go @@ -33,7 +33,7 @@ func (c *commandFsMetaLoad) Help() string { fs.meta.load <filer_host>-<port>-<time>.meta fs.meta.load -v=false <filer_host>-<port>-<time>.meta // skip printing out the verbose output fs.meta.load -concurrency=1 <filer_host>-<port>-<time>.meta // number of parallel meta load to filer - fs.meta.load -dirPrefix=/buckets/important* <filer_host>.meta // load any dirs with prefix "important" + fs.meta.load -dirPrefix=/buckets/important <filer_host>.meta // load any dirs with prefix "important" ` } |
