From 701abbb9df1b21b2acef8af6b5f1093754dd4f40 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sat, 28 Sep 2024 20:22:57 -0700 Subject: add IsResourceHeavy() to command interface --- weed/shell/command_fs_meta_cat.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'weed/shell/command_fs_meta_cat.go') diff --git a/weed/shell/command_fs_meta_cat.go b/weed/shell/command_fs_meta_cat.go index 69eee6e01..994e1ee18 100644 --- a/weed/shell/command_fs_meta_cat.go +++ b/weed/shell/command_fs_meta_cat.go @@ -30,6 +30,10 @@ func (c *commandFsMetaCat) Help() string { ` } +func (c *commandFsMetaCat) IsResourceHeavy() bool { + return false +} + func (c *commandFsMetaCat) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) { path, err := commandEnv.parseUrl(findInputDirectory(args)) -- cgit v1.2.3