From a879613637f54a7a2016549b308b359b7577b5ad Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Tue, 5 Jul 2011 23:08:40 +0000 Subject: cli: Exit if glusterd is not operational in non-prompt modes Signed-off-by: Vijay Bellur Signed-off-by: Anand Avati BUG: 3120 (Provide connection timeout between cli and glusterd) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=3120 --- cli/src/cli-cmd.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cli/src/cli-cmd.c') diff --git a/cli/src/cli-cmd.c b/cli/src/cli-cmd.c index cb0199b06..1d98ecc7a 100644 --- a/cli/src/cli-cmd.c +++ b/cli/src/cli-cmd.c @@ -132,7 +132,9 @@ cli_cmd_process (struct cli_state *state, int argc, char **argv) if ( strcmp (word->word,"help")==0 ) goto callback; - ret = cli_cmd_await_connected (cli_cmd_needs_connection (word)); + state->await_connected = cli_cmd_needs_connection (word); + + ret = cli_cmd_await_connected (state->await_connected); if (ret) { cli_out ("Connection failed. Please check if gluster " "daemon is operational."); -- cgit