Browse Source

refactor

pull/6079/head
chrislu 3 months ago
parent
commit
ec30a504ba
  1. 8
      weed/shell/command.go
  2. 2
      weed/shell/command_cluster_check.go
  3. 2
      weed/shell/command_cluster_ps.go
  4. 2
      weed/shell/command_cluster_raft_add.go
  5. 2
      weed/shell/command_cluster_raft_ps.go
  6. 2
      weed/shell/command_cluster_raft_remove.go
  7. 2
      weed/shell/command_collection_delete.go
  8. 2
      weed/shell/command_collection_list.go
  9. 2
      weed/shell/command_ec_balance.go
  10. 2
      weed/shell/command_ec_decode.go
  11. 2
      weed/shell/command_ec_encode.go
  12. 2
      weed/shell/command_ec_rebuild.go
  13. 2
      weed/shell/command_fs_cat.go
  14. 2
      weed/shell/command_fs_cd.go
  15. 2
      weed/shell/command_fs_configure.go
  16. 2
      weed/shell/command_fs_du.go
  17. 2
      weed/shell/command_fs_log.go
  18. 2
      weed/shell/command_fs_ls.go
  19. 2
      weed/shell/command_fs_merge_volumes.go
  20. 2
      weed/shell/command_fs_meta_cat.go
  21. 2
      weed/shell/command_fs_meta_change_volume_id.go
  22. 2
      weed/shell/command_fs_meta_load.go
  23. 2
      weed/shell/command_fs_meta_notify.go
  24. 2
      weed/shell/command_fs_meta_save.go
  25. 2
      weed/shell/command_fs_mkdir.go
  26. 2
      weed/shell/command_fs_mv.go
  27. 2
      weed/shell/command_fs_pwd.go
  28. 2
      weed/shell/command_fs_rm.go
  29. 2
      weed/shell/command_fs_tree.go
  30. 2
      weed/shell/command_fs_verify.go
  31. 4
      weed/shell/command_lock_unlock.go
  32. 2
      weed/shell/command_mount_configure.go
  33. 2
      weed/shell/command_mq_balance.go
  34. 2
      weed/shell/command_mq_topic_configure.go
  35. 2
      weed/shell/command_mq_topic_desc.go
  36. 2
      weed/shell/command_mq_topic_list.go
  37. 2
      weed/shell/command_remote_cache.go
  38. 2
      weed/shell/command_remote_configure.go
  39. 2
      weed/shell/command_remote_meta_sync.go
  40. 2
      weed/shell/command_remote_mount.go
  41. 2
      weed/shell/command_remote_mount_buckets.go
  42. 2
      weed/shell/command_remote_uncache.go
  43. 2
      weed/shell/command_remote_unmount.go
  44. 2
      weed/shell/command_s3_bucket_create.go
  45. 2
      weed/shell/command_s3_bucket_delete.go
  46. 2
      weed/shell/command_s3_bucket_list.go
  47. 2
      weed/shell/command_s3_bucket_quota.go
  48. 2
      weed/shell/command_s3_bucket_quota_check.go
  49. 2
      weed/shell/command_s3_circuitbreaker.go
  50. 2
      weed/shell/command_s3_clean_uploads.go
  51. 2
      weed/shell/command_s3_configure.go
  52. 2
      weed/shell/command_volume_balance.go
  53. 2
      weed/shell/command_volume_check_disk.go
  54. 2
      weed/shell/command_volume_configure_replication.go
  55. 2
      weed/shell/command_volume_copy.go
  56. 2
      weed/shell/command_volume_delete.go
  57. 2
      weed/shell/command_volume_delete_empty.go
  58. 2
      weed/shell/command_volume_fix_replication.go
  59. 2
      weed/shell/command_volume_fsck.go
  60. 2
      weed/shell/command_volume_grow.go
  61. 2
      weed/shell/command_volume_list.go
  62. 2
      weed/shell/command_volume_mark.go
  63. 2
      weed/shell/command_volume_mount.go
  64. 2
      weed/shell/command_volume_move.go
  65. 2
      weed/shell/command_volume_server_evacuate.go
  66. 2
      weed/shell/command_volume_server_leave.go
  67. 2
      weed/shell/command_volume_tier_download.go
  68. 2
      weed/shell/command_volume_tier_move.go
  69. 2
      weed/shell/command_volume_tier_upload.go
  70. 2
      weed/shell/command_volume_unmount.go
  71. 2
      weed/shell/command_volume_vacuum.go
  72. 2
      weed/shell/command_volume_vacuum_disable.go
  73. 2
      weed/shell/command_volume_vacuum_enable.go

8
weed/shell/command.go

@ -6,9 +6,15 @@ type command interface {
Name() string
Help() string
Do([]string, *CommandEnv, io.Writer) error
IsResourceHeavy() bool
HasTag(tag CommandTag) bool
}
var (
Commands = []command{}
)
type CommandTag string
const (
ResourceHeavy CommandTag = "resourceHeavy"
)

2
weed/shell/command_cluster_check.go

@ -32,7 +32,7 @@ func (c *commandClusterCheck) Help() string {
`
}
func (c *commandClusterCheck) IsResourceHeavy() bool {
func (c *commandClusterCheck) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_cluster_ps.go

@ -35,7 +35,7 @@ func (c *commandClusterPs) Help() string {
`
}
func (c *commandClusterPs) IsResourceHeavy() bool {
func (c *commandClusterPs) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_cluster_raft_add.go

@ -27,7 +27,7 @@ func (c *commandRaftServerAdd) Help() string {
`
}
func (c *commandRaftServerAdd) IsResourceHeavy() bool {
func (c *commandRaftServerAdd) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_cluster_raft_ps.go

@ -26,7 +26,7 @@ func (c *commandRaftClusterPs) Help() string {
`
}
func (c *commandRaftClusterPs) IsResourceHeavy() bool {
func (c *commandRaftClusterPs) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_cluster_raft_remove.go

@ -27,7 +27,7 @@ func (c *commandRaftServerRemove) Help() string {
`
}
func (c *commandRaftServerRemove) IsResourceHeavy() bool {
func (c *commandRaftServerRemove) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_collection_delete.go

@ -28,7 +28,7 @@ func (c *commandCollectionDelete) Help() string {
`
}
func (c *commandCollectionDelete) IsResourceHeavy() bool {
func (c *commandCollectionDelete) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_collection_list.go

@ -23,7 +23,7 @@ func (c *commandCollectionList) Help() string {
return `list all collections`
}
func (c *commandCollectionList) IsResourceHeavy() bool {
func (c *commandCollectionList) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_ec_balance.go

@ -98,7 +98,7 @@ func (c *commandEcBalance) Help() string {
`
}
func (c *commandEcBalance) IsResourceHeavy() bool {
func (c *commandEcBalance) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_ec_decode.go

@ -37,7 +37,7 @@ func (c *commandEcDecode) Help() string {
`
}
func (c *commandEcDecode) IsResourceHeavy() bool {
func (c *commandEcDecode) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_ec_encode.go

@ -56,7 +56,7 @@ func (c *commandEcEncode) Help() string {
`
}
func (c *commandEcEncode) IsResourceHeavy() bool {
func (c *commandEcEncode) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_ec_rebuild.go

@ -55,7 +55,7 @@ func (c *commandEcRebuild) Help() string {
`
}
func (c *commandEcRebuild) IsResourceHeavy() bool {
func (c *commandEcRebuild) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_cat.go

@ -26,7 +26,7 @@ func (c *commandFsCat) Help() string {
`
}
func (c *commandFsCat) IsResourceHeavy() bool {
func (c *commandFsCat) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_cd.go

@ -28,7 +28,7 @@ func (c *commandFsCd) Help() string {
`
}
func (c *commandFsCd) IsResourceHeavy() bool {
func (c *commandFsCd) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_configure.go

@ -46,7 +46,7 @@ func (c *commandFsConfigure) Help() string {
`
}
func (c *commandFsConfigure) IsResourceHeavy() bool {
func (c *commandFsConfigure) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_du.go

@ -29,7 +29,7 @@ func (c *commandFsDu) Help() string {
`
}
func (c *commandFsDu) IsResourceHeavy() bool {
func (c *commandFsDu) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_log.go

@ -27,7 +27,7 @@ func (c *commandFsLogPurge) Help() string {
`
}
func (c *commandFsLogPurge) IsResourceHeavy() bool {
func (c *commandFsLogPurge) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_ls.go

@ -33,7 +33,7 @@ func (c *commandFsLs) Help() string {
`
}
func (c *commandFsLs) IsResourceHeavy() bool {
func (c *commandFsLs) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_merge_volumes.go

@ -44,7 +44,7 @@ func (c *commandFsMergeVolumes) Help() string {
`
}
func (c *commandFsMergeVolumes) IsResourceHeavy() bool {
func (c *commandFsMergeVolumes) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_meta_cat.go

@ -30,7 +30,7 @@ func (c *commandFsMetaCat) Help() string {
`
}
func (c *commandFsMetaCat) IsResourceHeavy() bool {
func (c *commandFsMetaCat) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_meta_change_volume_id.go

@ -37,7 +37,7 @@ func (c *commandFsMetaChangeVolumeId) Help() string {
`
}
func (c *commandFsMetaChangeVolumeId) IsResourceHeavy() bool {
func (c *commandFsMetaChangeVolumeId) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_meta_load.go

@ -38,7 +38,7 @@ func (c *commandFsMetaLoad) Help() string {
`
}
func (c *commandFsMetaLoad) IsResourceHeavy() bool {
func (c *commandFsMetaLoad) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_meta_notify.go

@ -30,7 +30,7 @@ func (c *commandFsMetaNotify) Help() string {
`
}
func (c *commandFsMetaNotify) IsResourceHeavy() bool {
func (c *commandFsMetaNotify) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_meta_save.go

@ -44,7 +44,7 @@ func (c *commandFsMetaSave) Help() string {
`
}
func (c *commandFsMetaSave) IsResourceHeavy() bool {
func (c *commandFsMetaSave) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_mkdir.go

@ -27,7 +27,7 @@ func (c *commandFsMkdir) Help() string {
`
}
func (c *commandFsMkdir) IsResourceHeavy() bool {
func (c *commandFsMkdir) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_mv.go

@ -34,7 +34,7 @@ func (c *commandFsMv) Help() string {
`
}
func (c *commandFsMv) IsResourceHeavy() bool {
func (c *commandFsMv) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_pwd.go

@ -20,7 +20,7 @@ func (c *commandFsPwd) Help() string {
return `print out current directory`
}
func (c *commandFsPwd) IsResourceHeavy() bool {
func (c *commandFsPwd) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_rm.go

@ -34,7 +34,7 @@ func (c *commandFsRm) Help() string {
`
}
func (c *commandFsRm) IsResourceHeavy() bool {
func (c *commandFsRm) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_tree.go

@ -28,7 +28,7 @@ func (c *commandFsTree) Help() string {
`
}
func (c *commandFsTree) IsResourceHeavy() bool {
func (c *commandFsTree) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_fs_verify.go

@ -51,7 +51,7 @@ func (c *commandFsVerify) Help() string {
`
}
func (c *commandFsVerify) IsResourceHeavy() bool {
func (c *commandFsVerify) HasTag(CommandTag) bool {
return false
}

4
weed/shell/command_lock_unlock.go

@ -25,7 +25,7 @@ func (c *commandLock) Help() string {
`
}
func (c *commandLock) IsResourceHeavy() bool {
func (c *commandLock) HasTag(CommandTag) bool {
return false
}
@ -51,7 +51,7 @@ func (c *commandUnlock) Help() string {
`
}
func (c *commandUnlock) IsResourceHeavy() bool {
func (c *commandUnlock) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_mount_configure.go

@ -34,7 +34,7 @@ func (c *commandMountConfigure) Help() string {
`
}
func (c *commandMountConfigure) IsResourceHeavy() bool {
func (c *commandMountConfigure) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_mq_balance.go

@ -25,7 +25,7 @@ func (c *commandMqBalanceTopics) Help() string {
`
}
func (c *commandMqBalanceTopics) IsResourceHeavy() bool {
func (c *commandMqBalanceTopics) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_mq_topic_configure.go

@ -29,7 +29,7 @@ func (c *commandMqTopicConfigure) Help() string {
`
}
func (c *commandMqTopicConfigure) IsResourceHeavy() bool {
func (c *commandMqTopicConfigure) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_mq_topic_desc.go

@ -24,7 +24,7 @@ func (c *commandMqTopicDescribe) Help() string {
return `describe a topic`
}
func (c *commandMqTopicDescribe) IsResourceHeavy() bool {
func (c *commandMqTopicDescribe) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_mq_topic_list.go

@ -25,7 +25,7 @@ func (c *commandMqTopicList) Help() string {
return `print out all topics`
}
func (c *commandMqTopicList) IsResourceHeavy() bool {
func (c *commandMqTopicList) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_remote_cache.go

@ -46,7 +46,7 @@ func (c *commandRemoteCache) Help() string {
`
}
func (c *commandRemoteCache) IsResourceHeavy() bool {
func (c *commandRemoteCache) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_remote_configure.go

@ -48,7 +48,7 @@ func (c *commandRemoteConfigure) Help() string {
`
}
func (c *commandRemoteConfigure) IsResourceHeavy() bool {
func (c *commandRemoteConfigure) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_remote_meta_sync.go

@ -44,7 +44,7 @@ func (c *commandRemoteMetaSync) Help() string {
`
}
func (c *commandRemoteMetaSync) IsResourceHeavy() bool {
func (c *commandRemoteMetaSync) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_remote_mount.go

@ -44,7 +44,7 @@ func (c *commandRemoteMount) Help() string {
`
}
func (c *commandRemoteMount) IsResourceHeavy() bool {
func (c *commandRemoteMount) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_remote_mount_buckets.go

@ -38,7 +38,7 @@ func (c *commandRemoteMountBuckets) Help() string {
`
}
func (c *commandRemoteMountBuckets) IsResourceHeavy() bool {
func (c *commandRemoteMountBuckets) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_remote_uncache.go

@ -41,7 +41,7 @@ func (c *commandRemoteUncache) Help() string {
`
}
func (c *commandRemoteUncache) IsResourceHeavy() bool {
func (c *commandRemoteUncache) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_remote_unmount.go

@ -37,7 +37,7 @@ func (c *commandRemoteUnmount) Help() string {
`
}
func (c *commandRemoteUnmount) IsResourceHeavy() bool {
func (c *commandRemoteUnmount) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_s3_bucket_create.go

@ -30,7 +30,7 @@ func (c *commandS3BucketCreate) Help() string {
`
}
func (c *commandS3BucketCreate) IsResourceHeavy() bool {
func (c *commandS3BucketCreate) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_s3_bucket_delete.go

@ -28,7 +28,7 @@ func (c *commandS3BucketDelete) Help() string {
`
}
func (c *commandS3BucketDelete) IsResourceHeavy() bool {
func (c *commandS3BucketDelete) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_s3_bucket_list.go

@ -27,7 +27,7 @@ func (c *commandS3BucketList) Help() string {
`
}
func (c *commandS3BucketList) IsResourceHeavy() bool {
func (c *commandS3BucketList) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_s3_bucket_quota.go

@ -28,7 +28,7 @@ func (c *commandS3BucketQuota) Help() string {
`
}
func (c *commandS3BucketQuota) IsResourceHeavy() bool {
func (c *commandS3BucketQuota) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_s3_bucket_quota_check.go

@ -29,7 +29,7 @@ func (c *commandS3BucketQuotaEnforce) Help() string {
`
}
func (c *commandS3BucketQuotaEnforce) IsResourceHeavy() bool {
func (c *commandS3BucketQuotaEnforce) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_s3_circuitbreaker.go

@ -51,7 +51,7 @@ func (c *commandS3CircuitBreaker) Help() string {
`
}
func (c *commandS3CircuitBreaker) IsResourceHeavy() bool {
func (c *commandS3CircuitBreaker) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_s3_clean_uploads.go

@ -34,7 +34,7 @@ func (c *commandS3CleanUploads) Help() string {
`
}
func (c *commandS3CleanUploads) IsResourceHeavy() bool {
func (c *commandS3CleanUploads) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_s3_configure.go

@ -33,7 +33,7 @@ func (c *commandS3Configure) Help() string {
`
}
func (c *commandS3Configure) IsResourceHeavy() bool {
func (c *commandS3Configure) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_balance.go

@ -64,7 +64,7 @@ func (c *commandVolumeBalance) Help() string {
`
}
func (c *commandVolumeBalance) IsResourceHeavy() bool {
func (c *commandVolumeBalance) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_check_disk.go

@ -48,7 +48,7 @@ func (c *commandVolumeCheckDisk) Help() string {
`
}
func (c *commandVolumeCheckDisk) IsResourceHeavy() bool {
func (c *commandVolumeCheckDisk) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_configure_replication.go

@ -35,7 +35,7 @@ func (c *commandVolumeConfigureReplication) Help() string {
`
}
func (c *commandVolumeConfigureReplication) IsResourceHeavy() bool {
func (c *commandVolumeConfigureReplication) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_copy.go

@ -31,7 +31,7 @@ func (c *commandVolumeCopy) Help() string {
`
}
func (c *commandVolumeCopy) IsResourceHeavy() bool {
func (c *commandVolumeCopy) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_delete.go

@ -29,7 +29,7 @@ func (c *commandVolumeDelete) Help() string {
`
}
func (c *commandVolumeDelete) IsResourceHeavy() bool {
func (c *commandVolumeDelete) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_delete_empty.go

@ -32,7 +32,7 @@ func (c *commandVolumeDeleteEmpty) Help() string {
`
}
func (c *commandVolumeDeleteEmpty) IsResourceHeavy() bool {
func (c *commandVolumeDeleteEmpty) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_fix_replication.go

@ -55,7 +55,7 @@ func (c *commandVolumeFixReplication) Help() string {
`
}
func (c *commandVolumeFixReplication) IsResourceHeavy() bool {
func (c *commandVolumeFixReplication) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_fsck.go

@ -79,7 +79,7 @@ func (c *commandVolumeFsck) Help() string {
`
}
func (c *commandVolumeFsck) IsResourceHeavy() bool {
func (c *commandVolumeFsck) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_grow.go

@ -30,7 +30,7 @@ func (c *commandGrow) Help() string {
`
}
func (c *commandGrow) IsResourceHeavy() bool {
func (c *commandGrow) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_list.go

@ -39,7 +39,7 @@ func (c *commandVolumeList) Help() string {
`
}
func (c *commandVolumeList) IsResourceHeavy() bool {
func (c *commandVolumeList) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_mark.go

@ -28,7 +28,7 @@ func (c *commandVolumeMark) Help() string {
`
}
func (c *commandVolumeMark) IsResourceHeavy() bool {
func (c *commandVolumeMark) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_mount.go

@ -33,7 +33,7 @@ func (c *commandVolumeMount) Help() string {
`
}
func (c *commandVolumeMount) IsResourceHeavy() bool {
func (c *commandVolumeMount) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_move.go

@ -49,7 +49,7 @@ func (c *commandVolumeMove) Help() string {
`
}
func (c *commandVolumeMove) IsResourceHeavy() bool {
func (c *commandVolumeMove) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_server_evacuate.go

@ -46,7 +46,7 @@ func (c *commandVolumeServerEvacuate) Help() string {
`
}
func (c *commandVolumeServerEvacuate) IsResourceHeavy() bool {
func (c *commandVolumeServerEvacuate) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_server_leave.go

@ -35,7 +35,7 @@ func (c *commandVolumeServerLeave) Help() string {
`
}
func (c *commandVolumeServerLeave) IsResourceHeavy() bool {
func (c *commandVolumeServerLeave) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_tier_download.go

@ -41,7 +41,7 @@ func (c *commandVolumeTierDownload) Help() string {
`
}
func (c *commandVolumeTierDownload) IsResourceHeavy() bool {
func (c *commandVolumeTierDownload) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_tier_move.go

@ -53,7 +53,7 @@ func (c *commandVolumeTierMove) Help() string {
`
}
func (c *commandVolumeTierMove) IsResourceHeavy() bool {
func (c *commandVolumeTierMove) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_tier_upload.go

@ -56,7 +56,7 @@ func (c *commandVolumeTierUpload) Help() string {
`
}
func (c *commandVolumeTierUpload) IsResourceHeavy() bool {
func (c *commandVolumeTierUpload) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_unmount.go

@ -34,7 +34,7 @@ func (c *commandVolumeUnmount) Help() string {
`
}
func (c *commandVolumeUnmount) IsResourceHeavy() bool {
func (c *commandVolumeUnmount) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_vacuum.go

@ -27,7 +27,7 @@ func (c *commandVacuum) Help() string {
`
}
func (c *commandVacuum) IsResourceHeavy() bool {
func (c *commandVacuum) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_vacuum_disable.go

@ -26,7 +26,7 @@ func (c *commandDisableVacuum) Help() string {
`
}
func (c *commandDisableVacuum) IsResourceHeavy() bool {
func (c *commandDisableVacuum) HasTag(CommandTag) bool {
return false
}

2
weed/shell/command_volume_vacuum_enable.go

@ -26,7 +26,7 @@ func (c *commandEnableVacuum) Help() string {
`
}
func (c *commandEnableVacuum) IsResourceHeavy() bool {
func (c *commandEnableVacuum) HasTag(CommandTag) bool {
return false
}

Loading…
Cancel
Save