summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd
diff options
context:
space:
mode:
authorMohammed Rafi KC <rkavunga@redhat.com>2015-11-09 16:43:21 +0530
committerAtin Mukherjee <amukherj@redhat.com>2015-11-16 01:19:58 -0800
commit571cbcf56ef865d64ebdb1621c791fe467501e52 (patch)
tree17ed7872fb0697765fc5ea8c7b9cc52c453a83a2 /xlators/mgmt/glusterd
parent82e45b87e30ce4ec2ab62c39820951da7a82eddb (diff)
glusterd: brick failed to start
brick volfiles are generated in post validate, if it is running version higher than GLUSTER_3_7_5, else will be running in syncop. If the code fall back to syncop, and volume is stopped then we were returning the operation with out generating volfiles. Change-Id: I3b16ee29de19c5d34e45d77d6b7e4b665c2a4653 BUG: 1282322 Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com> Reviewed-on: http://review.gluster.org/12552 Tested-by: NetBSD Build System <jenkins@build.gluster.org> Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Atin Mukherjee <amukherj@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-brick-ops.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-brick-ops.c b/xlators/mgmt/glusterd/src/glusterd-brick-ops.c
index 31c07e6b230..efd70581f46 100644
--- a/xlators/mgmt/glusterd/src/glusterd-brick-ops.c
+++ b/xlators/mgmt/glusterd/src/glusterd-brick-ops.c
@@ -1337,7 +1337,7 @@ glusterd_op_perform_add_bricks (glusterd_volinfo_t *volinfo, int32_t count,
ret = 0;
if (GLUSTERD_STATUS_STARTED != volinfo->status)
- goto out;
+ goto generate_volfiles;
ret = generate_brick_volfiles (volinfo);
if (ret)
@@ -1413,6 +1413,8 @@ glusterd_op_perform_add_bricks (glusterd_volinfo_t *volinfo, int32_t count,
_glusterd_restart_gsync_session, &param);
}
volinfo->caps = caps;
+
+generate_volfiles:
if (conf->op_version <= GD_OP_VERSION_3_7_5) {
ret = glusterd_create_volfiles_and_notify_services (volinfo);
} else {