aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_cat.go
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2021-03-16 03:36:34 -0700
committerGitHub <noreply@github.com>2021-03-16 03:36:34 -0700
commit04604b89e1da28d45e9f88bd0fe6ae0fb091e324 (patch)
tree1ef3f4cd86f9772631496a193bdeb62e25e780de /weed/shell/command_fs_cat.go
parent9672f9e1b2ed399470e6ec877a667417c8b26870 (diff)
parenteb54993a4eacffde48007bb3bcc46b664d38c403 (diff)
downloadseaweedfs-04604b89e1da28d45e9f88bd0fe6ae0fb091e324.tar.xz
seaweedfs-04604b89e1da28d45e9f88bd0fe6ae0fb091e324.zip
Merge pull request #1913 from kmlebedev/check_chunkviews_mr
Check chunkviews mr
Diffstat (limited to 'weed/shell/command_fs_cat.go')
-rw-r--r--weed/shell/command_fs_cat.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_fs_cat.go b/weed/shell/command_fs_cat.go
index 3c5e13663..df43d93dc 100644
--- a/weed/shell/command_fs_cat.go
+++ b/weed/shell/command_fs_cat.go
@@ -52,7 +52,7 @@ func (c *commandFsCat) Do(args []string, commandEnv *CommandEnv, writer io.Write
return err
}
- return filer.StreamContent(commandEnv.MasterClient, writer, respLookupEntry.Entry.Chunks, 0, math.MaxInt64)
+ return filer.StreamContent(commandEnv.MasterClient, writer, respLookupEntry.Entry.Chunks, 0, math.MaxInt64, false)
})