diff options
author | Sanju Rakonde <srakonde@redhat.com> | 2017-11-09 13:15:51 +0530 |
---|---|---|
committer | Atin Mukherjee <amukherj@redhat.com> | 2017-11-09 18:59:52 +0000 |
commit | 046c7e3199fca715592762e271e6061ac99b0c4b (patch) | |
tree | c23abe63ec28812d85f7fc6e3a35e43596863a72 /xlators/mgmt/glusterd | |
parent | 8b57378e5596f287a7b9d106dd6fb56a624b42ee (diff) |
glusterd: display gluster volume status, when quorum type is server
Problem: when server-quorum-type is server, after restarting glusterd
in the node which is up, gluster volume status is giving incorrect
information.
Fix: check whether server is blank, before adding other keys into the
dictionary.
Change-Id: I926ebdffab330ccef844f23f6d6556e137914047
BUG: 1511339
Signed-off-by: Sanju Rakonde <srakonde@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-utils.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index e6793d9b751..b79bdcb1edf 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -5050,6 +5050,12 @@ glusterd_add_node_to_dict (char *server, dict_t *dict, int count, * the brick as hostname+path, so this will make more sense * when output. */ + + if (!strcmp(server, "")) { + ret = 0; + goto out; + } + snprintf (key, sizeof (key), "brick%d.hostname", count); if (!strcmp (server, priv->nfs_svc.name)) ret = dict_set_str (dict, key, "NFS Server"); |