diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-03-23 22:54:46 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-03-23 22:54:46 -0700 |
| commit | 8047ec2f5103696982acd6c6407ce77c1b02b89e (patch) | |
| tree | ff24256fbd39b43cdc7a0f529772d1e70a01159e /weed/shell/command_fs_meta_notify.go | |
| parent | 782d776d2a63c8c403f7fa52e97154f146467610 (diff) | |
| download | seaweedfs-8047ec2f5103696982acd6c6407ce77c1b02b89e.tar.xz seaweedfs-8047ec2f5103696982acd6c6407ce77c1b02b89e.zip | |
shell: fs.meta.save add option to export all fileIds for all files
Diffstat (limited to 'weed/shell/command_fs_meta_notify.go')
| -rw-r--r-- | weed/shell/command_fs_meta_notify.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_meta_notify.go b/weed/shell/command_fs_meta_notify.go index b361b61a6..56e63e98f 100644 --- a/weed/shell/command_fs_meta_notify.go +++ b/weed/shell/command_fs_meta_notify.go @@ -43,7 +43,7 @@ func (c *commandFsMetaNotify) Do(args []string, commandEnv *CommandEnv, writer i var dirCount, fileCount uint64 - err = doTraverseBFS(writer, commandEnv, util.FullPath(path), func(parentPath util.FullPath, entry *filer_pb.Entry) { + err = doTraverseBfs(writer, commandEnv, util.FullPath(path), func(parentPath util.FullPath, entry *filer_pb.Entry) { if entry.IsDirectory { dirCount++ |
