summaryrefslogtreecommitdiffstats
path: root/cli/src
diff options
context:
space:
mode:
authorggarg <ggarg@redhat.com>2014-04-14 16:38:15 +0530
committergluster-ant <bugzilla-bot@gluster.org>2014-04-14 16:38:15 +0530
commit65eb06c71abe45eefd50aa58a403c66a8e1dd4a3 (patch)
tree998eff320168ce2238a96dab62685236fc140fbe /cli/src
parent2d25b551f8ad7ef45e967a15eaa40f64ccd26aec (diff)
cli: Fixing ambiguous message error for rebalance <volname> start command
Previously output message of command 'gluster volume rebalance <volname> start/start force/fix-layout start' was ambiguous and poorly formatted. Previously output message was: "volume rebalance: <volname>: success: Starting rebalance on volume <volname> has been successful." Now with this fix properly formatted output message is: "volume rebalance: <volname>: success: Rebalance on <volname> has been started Successfully. Use rebalance status command to check status of the rebalance process." Change-Id: I23268fc13b05d1b39ffe4c702d0e4f73085acd1c BUG: 1087487 Signed-off-by: ggarg <ggarg@redhat.com> Reviewed-on: http://review.gluster.org/7473 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'cli/src')
-rw-r--r--cli/src/cli-rpc-ops.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c
index ac66b1a566..bbb7e56590 100644
--- a/cli/src/cli-rpc-ops.c
+++ b/cli/src/cli-rpc-ops.c
@@ -1510,11 +1510,11 @@ gf_cli_defrag_volume_cbk (struct rpc_req *req, struct iovec *iov,
} else {
if (!rsp.op_ret) {
snprintf (msg, sizeof (msg),
- "Initiated rebalance on volume %s."
- "\nExecute \"gluster volume rebalance"
- " <volume-name> status\" to check"
- " status.\nID: %s", volname,
- task_id_str);
+ "Rebalance on %s has been started "
+ "successfully. Use rebalance status "
+ "command to check status of the "
+ "rebalance process.\nID: %s",
+ volname, task_id_str);
} else {
snprintf (msg, sizeof (msg),
"Starting rebalance on volume %s has "