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_s3_configure.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'weed/shell/command_s3_configure.go') diff --git a/weed/shell/command_s3_configure.go b/weed/shell/command_s3_configure.go index 33c5a4cfc..a92abe277 100644 --- a/weed/shell/command_s3_configure.go +++ b/weed/shell/command_s3_configure.go @@ -33,6 +33,10 @@ func (c *commandS3Configure) Help() string { ` } +func (c *commandS3Configure) IsResourceHeavy() bool { + return false +} + func (c *commandS3Configure) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) { s3ConfigureCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError) -- cgit v1.2.3