From 66ff8e2cb7fb938107d9d9a73685c4fe392e328e Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Thu, 10 Aug 2023 10:56:26 +0300 Subject: [PATCH] [#589] cli: Add `control shards evacuate` command It was accidentally removed in f7c0b50d70f. Signed-off-by: Evgenii Stratonikov --- cmd/frostfs-cli/modules/control/shards.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/frostfs-cli/modules/control/shards.go b/cmd/frostfs-cli/modules/control/shards.go index 74210967..6208c560 100644 --- a/cmd/frostfs-cli/modules/control/shards.go +++ b/cmd/frostfs-cli/modules/control/shards.go @@ -13,6 +13,7 @@ var shardsCmd = &cobra.Command{ func initControlShardsCmd() { shardsCmd.AddCommand(listShardsCmd) shardsCmd.AddCommand(setShardModeCmd) + shardsCmd.AddCommand(evacuateShardCmd) shardsCmd.AddCommand(evacuationShardCmd) shardsCmd.AddCommand(flushCacheCmd) shardsCmd.AddCommand(doctorCmd)