From 5ca019f339d76187f26757222084319cd1b28ad6 Mon Sep 17 00:00:00 2001 From: shishir gowda Date: Tue, 19 Oct 2010 03:02:10 +0000 Subject: Propogate rebalance already started error to cli Signed-off-by: shishir gowda Signed-off-by: Anand V. Avati BUG: 1882 (starting rebalance while previous rebalance is still running) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1882 --- cli/src/cli3_1-cops.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cli/src/cli3_1-cops.c') diff --git a/cli/src/cli3_1-cops.c b/cli/src/cli3_1-cops.c index ee66b165f4e..9e1338cb3eb 100644 --- a/cli/src/cli3_1-cops.c +++ b/cli/src/cli3_1-cops.c @@ -770,6 +770,9 @@ gf_cli3_1_defrag_volume_cbk (struct rpc_req *req, struct iovec *iov, if (cmd == GF_DEFRAG_CMD_START) { cli_out ("starting rebalance on volume %s has been %s", volname, (rsp.op_ret) ? "unsuccessful": "successful"); + if (rsp.op_ret && rsp.op_errno == EEXIST) + cli_out ("Rebalance already started on volume %s", + volname); } if (cmd == GF_DEFRAG_CMD_STOP) { if (rsp.op_ret == -1) -- cgit