diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-04-29 17:40:08 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-04-29 17:40:08 -0700 |
| commit | 9e72e9e4b8d58e0f6f99088f0e449d1c9c55e562 (patch) | |
| tree | 4b3b24e0bc17b9597010ce18892a5cb8264476d7 /weed/shell/command_fs_du.go | |
| parent | ed3cf811f576e2dd9fd1c1fb0df967d7fb9e6f1c (diff) | |
| download | seaweedfs-9e72e9e4b8d58e0f6f99088f0e449d1c9c55e562.tar.xz seaweedfs-9e72e9e4b8d58e0f6f99088f0e449d1c9c55e562.zip | |
able to subscribe any topic from any point of time
Diffstat (limited to 'weed/shell/command_fs_du.go')
| -rw-r--r-- | weed/shell/command_fs_du.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/shell/command_fs_du.go b/weed/shell/command_fs_du.go index 08c553e7c..96551dd5a 100644 --- a/weed/shell/command_fs_du.go +++ b/weed/shell/command_fs_du.go @@ -54,7 +54,7 @@ func (c *commandFsDu) Do(args []string, commandEnv *CommandEnv, writer io.Writer func duTraverseDirectory(writer io.Writer, filerClient filer_pb.FilerClient, dir, name string) (blockCount, byteCount uint64, err error) { - err = filer_pb.ReadDirAllEntries(filerClient, util.FullPath(dir), name, func(entry *filer_pb.Entry, isLast bool) { + err = filer_pb.ReadDirAllEntries(filerClient, util.FullPath(dir), name, func(entry *filer_pb.Entry, isLast bool) error { var fileBlockCount, fileByteCount uint64 @@ -78,6 +78,7 @@ func duTraverseDirectory(writer io.Writer, filerClient filer_pb.FilerClient, dir if name != "" && !entry.IsDirectory { fmt.Fprintf(writer, "block:%4d\tbyte:%10d\t%s/%s\n", fileBlockCount, fileByteCount, dir, entry.Name) } + return nil }) return } |
