From dbb04d78b9c2f0eccf34c611eeaab02e2860414f Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Wed, 26 Jan 2022 10:57:24 +0300 Subject: [PATCH] [#1103] neofs-cli: mention IR in healthcheck help message Signed-off-by: Evgenii Stratonikov --- cmd/neofs-cli/modules/control.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/neofs-cli/modules/control.go b/cmd/neofs-cli/modules/control.go index 6195bd47c..c91368569 100644 --- a/cmd/neofs-cli/modules/control.go +++ b/cmd/neofs-cli/modules/control.go @@ -33,8 +33,8 @@ var controlCmd = &cobra.Command{ var healthCheckCmd = &cobra.Command{ Use: "healthcheck", - Short: "Health check of the storage node", - Long: "Health check of the storage node", + Short: "Health check of the NeoFS node", + Long: "Health check of the NeoFS node. Checks storage node by default, use --ir flag to work with Inner Ring.", Run: healthCheck, }