From c2a0e3f722583731599785d16f12be5b3472934b Mon Sep 17 00:00:00 2001 From: ggarg Date: Mon, 14 Apr 2014 16:38:15 +0530 Subject: cli: Fixing ambiguous message error for rebalance start command Previously output message of command 'gluster volume rebalance start/start force/fix-layout start' was ambiguous and poorly formatted. Previously output message was: "volume rebalance: : success: Starting rebalance on volume has been successful." Now with this fix properly formatted output message is: "volume rebalance: : success: Rebalance on has been started Successfully. Use rebalance status command to check status of the rebalance process." Change-Id: I23268fc13b05d1b39ffe4c702d0e4f73085acd1c BUG: 1087487 Signed-off-by: ggarg Reviewed-on: http://review.gluster.org/7473 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- cli/src/cli-rpc-ops.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cli') diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c index ac66b1a5662..bbb7e56590a 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" - " 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 " -- cgit