summaryrefslogtreecommitdiffstats
path: root/cli/src/cli-cmd-volume.c
diff options
context:
space:
mode:
authorMohammed Rafi KC <rkavunga@redhat.com>2015-04-27 12:33:06 +0530
committerKaleb KEITHLEY <kkeithle@redhat.com>2015-04-30 06:54:42 -0700
commit508eb854f3f94f52d4ebd050f3e45deb9cfa90c8 (patch)
tree99a615fd1af3a4ce4dc432f64eb5333422196c2b /cli/src/cli-cmd-volume.c
parentcf1c53343d4b6fe834833b76c50c61fd8a312de0 (diff)
cli/tiering : Parse detach-tier command properly
gluster detach-tier help should show the usage of detach-tier command properly. Also, instead of force option, if any other was given, then the command should fail with a usage message Change-Id: Ie801529176db067c98fd1bfada056cbc647973fb BUG: 1211570 Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com> Reviewed-on: http://review.gluster.org/10303 Tested-by: NetBSD Build System Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Atin Mukherjee <amukherj@redhat.com> Reviewed-by: Dan Lambright <dlambrig@redhat.com>
Diffstat (limited to 'cli/src/cli-cmd-volume.c')
-rw-r--r--cli/src/cli-cmd-volume.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c
index b5d5920bebc..f73cb8bc3db 100644
--- a/cli/src/cli-cmd-volume.c
+++ b/cli/src/cli-cmd-volume.c
@@ -920,9 +920,11 @@ cli_cmd_volume_detach_tier_cbk (struct cli_state *state,
goto out;
ret = cli_cmd_volume_detach_tier_parse(words, wordcount, &options);
-
- if (ret)
+ if (ret) {
+ cli_usage_out (word->pattern);
+ parse_error = 1;
goto out;
+ }
ret = dict_set_int32 (options, "force", 1);
if (ret)