diff options
author | Pranith Kumar K <pkarampu@redhat.com> | 2012-11-27 12:33:06 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-11-29 17:34:54 -0800 |
commit | 1bfcabdb61920ed4156ac24799cdd846bec64233 (patch) | |
tree | bc93ddb237ae07f8e1dd2e34a07cf8b4d47ab962 /xlators/mgmt/glusterd/src/glusterd.h | |
parent | 3d83e6c42ee0d43208a7b1ebb0595ee7c43bb066 (diff) |
mgmt/glusterd: Consider nodesvc to be running after online
Definition of online in the message below is that the
RPC_CLNT_CONNECT event arrives for the nfs/self-heal-daemon process.
For automated tests, sometimes the script needs to wait until
self-heal-daemon comes online, so that the relevant
commands can be executed. Gluster volume status before this change
printed whether the self-heal-daemon is running or not based on the
lock availability on the pidfile. But there is a small window where
the lock on pid file is present but the process is still not
online. So the commands that were depending on this kept failing in
the test script.
Change-Id: I0e44e18b08d7b653d34fa170c1f187d91c888cd9
BUG: 858212
Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
Reviewed-on: http://review.gluster.org/4236
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd.h')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd.h b/xlators/mgmt/glusterd/src/glusterd.h index 36cd8f8fc56..66adff741bf 100644 --- a/xlators/mgmt/glusterd/src/glusterd.h +++ b/xlators/mgmt/glusterd/src/glusterd.h @@ -96,7 +96,7 @@ struct glusterd_volgen { typedef struct { struct rpc_clnt *rpc; - gf_boolean_t running; + gf_boolean_t online; } nodesrv_t; #define GD_OP_VERSION_KEY "operating-version" |