diff options
author | Mohammed Rafi KC <rkavunga@redhat.com> | 2015-04-23 16:24:43 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2015-05-07 23:07:21 -0700 |
commit | 7c0c184be28e0cba08645c7106c6901b444651c9 (patch) | |
tree | ecb398a5d33813b5bfb4af3535f3877a195560b1 /cli/src | |
parent | 9ba8963999bca431ec14a25961a163810cfe1e5b (diff) |
tiering: Do not allow some operations on tiered volume
Some operations like add-brick,remove-brick,rebalance,
replace-brick are not supported on tiered volume.
But there is no code level check for this. This patch
will allow to do the same
Change-Id: I12689f4e902cf0cceaf6f7f29c71057305024977
BUG: 1205624
Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com>
Reviewed-on: http://review.gluster.org/10349
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Tested-by: NetBSD Build System
Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com>
Tested-by: Krishnan Parthasarathi <kparthas@redhat.com>
Diffstat (limited to 'cli/src')
-rw-r--r-- | cli/src/cli-cmd-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c index 310c5f06033..cf5e80d2f51 100644 --- a/cli/src/cli-cmd-parser.c +++ b/cli/src/cli-cmd-parser.c @@ -1698,7 +1698,7 @@ cli_cmd_volume_detach_tier_parse (const char **words, int wordcount, } else if (!strcmp(word, "stop")) command = GF_DEFRAG_CMD_STOP_DETACH_TIER; else if (!strcmp(word, "status")) - command = GF_DEFRAG_CMD_STATUS; + command = GF_OP_CMD_STATUS; else goto out; |