aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_s3_bucket_quota.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2024-09-28 20:22:57 -0700
committerchrislu <chris.lu@gmail.com>2024-09-28 20:23:01 -0700
commit701abbb9df1b21b2acef8af6b5f1093754dd4f40 (patch)
tree631280df2bf1a541390df0f1683410b93b96b17c /weed/shell/command_s3_bucket_quota.go
parentdad3a26fb6a114e8b689ae60935e5f48d29cdd14 (diff)
downloadseaweedfs-701abbb9df1b21b2acef8af6b5f1093754dd4f40.tar.xz
seaweedfs-701abbb9df1b21b2acef8af6b5f1093754dd4f40.zip
add IsResourceHeavy() to command interface
Diffstat (limited to 'weed/shell/command_s3_bucket_quota.go')
-rw-r--r--weed/shell/command_s3_bucket_quota.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/shell/command_s3_bucket_quota.go b/weed/shell/command_s3_bucket_quota.go
index d603c8156..90bd685da 100644
--- a/weed/shell/command_s3_bucket_quota.go
+++ b/weed/shell/command_s3_bucket_quota.go
@@ -28,6 +28,10 @@ func (c *commandS3BucketQuota) Help() string {
`
}
+func (c *commandS3BucketQuota) IsResourceHeavy() bool {
+ return false
+}
+
func (c *commandS3BucketQuota) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
bucketCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)