summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhari gowtham <hgowtham@redhat.com>2015-10-21 12:12:09 +0530
committerDan Lambright <dlambrig@redhat.com>2015-10-22 06:49:47 -0700
commit89a68feb5261de2238e7a23fece74e2f19220334 (patch)
tree086347158c36a10769dd004ce7ad623b1a059762
parente851ecbb12647f3e66f6d4c1ebdb0741eb3a3d2c (diff)
Tier/cli: removing warning message for tiering
back-port of :http://review.gluster.org/#/c/12407/ The warning message for tiering being under experimental staus is removed. >Change-Id: I7d1d535d380b672c70f03ecc0d24a113600ea43f >BUG: 1273726 >Signed-off-by: hari gowtham <hgowtham@redhat.com> >Reviewed-on: http://review.gluster.org/12407 >Tested-by: NetBSD Build System <jenkins@build.gluster.org> >Reviewed-by: mohammed rafi kc <rkavunga@redhat.com> >Tested-by: Gluster Build System <jenkins@build.gluster.com> >Reviewed-by: Dan Lambright <dlambrig@redhat.com> >Tested-by: Dan Lambright <dlambrig@redhat.com> Change-Id: I957c4fd557908586183fefadd448b76391b4911a BUG: 1221957 Signed-off-by: Hari Gowtham <hgowtham@redhat.com> Reviewed-on: http://review.gluster.org/12412 Tested-by: NetBSD Build System <jenkins@build.gluster.org> Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Dan Lambright <dlambrig@redhat.com> Tested-by: Dan Lambright <dlambrig@redhat.com>
-rw-r--r--cli/src/cli-cmd-volume.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/src/cli-cmd-volume.c b/cli/src/cli-cmd-volume.c
index c23f31b83e3..670a597a8f7 100644
--- a/cli/src/cli-cmd-volume.c
+++ b/cli/src/cli-cmd-volume.c
@@ -910,21 +910,11 @@ do_cli_cmd_volume_attach_tier (struct cli_state *state,
int parse_error = 0;
cli_local_t *local = NULL;
int type = 0;
- char *question = "Attach tier is recommended only "
- "for testing purposes in this "
- "release. Do you want to continue?";
- gf_answer_t answer = GF_ANSWER_NO;
frame = create_frame (THIS, THIS->ctx->pool);
if (!frame)
goto out;
- answer = cli_cmd_get_confirmation (state, question);
- if (GF_ANSWER_NO == answer) {
- ret = 0;
- goto out;
- }
-
ret = cli_cmd_volume_add_brick_parse (words, wordcount, &options, &type);
if (ret) {
cli_usage_out (word->pattern);