summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-utils.c')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-utils.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c
index cfa782e026b..17732293729 100644
--- a/xlators/mgmt/glusterd/src/glusterd-utils.c
+++ b/xlators/mgmt/glusterd/src/glusterd-utils.c
@@ -686,6 +686,11 @@ glusterd_brickinfo_get (char *brick, glusterd_volinfo_t *volinfo,
ret = -1;
list_for_each_entry (tmp, &volinfo->bricks, brick_list) {
+ if (uuid_is_null (tmp->uuid)) {
+ ret = glusterd_resolve_brick (tmp);
+ if (ret)
+ goto out;
+ }
if ((!uuid_compare (uuid, tmp->uuid)) &&
!strcmp (tmp->path, path)) {
gf_log ("", GF_LOG_NORMAL, "Found brick");