aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_cat.go
diff options
context:
space:
mode:
authorKonstantin Lebedev <lebedev_k@tochka.com>2021-03-16 14:15:17 +0500
committerKonstantin Lebedev <lebedev_k@tochka.com>2021-03-16 14:15:17 +0500
commit06da02739d4a97dd8288f7fa05de7cd369e97d78 (patch)
treed64b7f7780f7a1caa5a41f94131200f7c57bdb27 /weed/shell/command_fs_cat.go
parent3a3699867b0f6f6c12d4b6c3e127ee3c49b57a42 (diff)
downloadseaweedfs-06da02739d4a97dd8288f7fa05de7cd369e97d78.tar.xz
seaweedfs-06da02739d4a97dd8288f7fa05de7cd369e97d78.zip
CheckAllChunkViews() for HEAD requests only
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)
})