diff options
Diffstat (limited to 'xlators/cluster/afr/src')
-rw-r--r-- | xlators/cluster/afr/src/afr-self-heal-common.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heal-common.c b/xlators/cluster/afr/src/afr-self-heal-common.c index 0397584080b..bd0e0462616 100644 --- a/xlators/cluster/afr/src/afr-self-heal-common.c +++ b/xlators/cluster/afr/src/afr-self-heal-common.c @@ -911,12 +911,15 @@ afr_sh_missing_entries_done (call_frame_t *frame, xlator_t *this) sh = &local->self_heal; afr_sh_reset (frame, this); - if (local->govinda_gOvinda || sh->op_failed) { - if (local->govinda_gOvinda) - gf_log (this->name, GF_LOG_INFO, - "split brain found, aborting selfheal of %s", - local->loc.path); + + if (local->govinda_gOvinda) { + gf_log (this->name, GF_LOG_INFO, + "split brain found, aborting selfheal of %s", + local->loc.path); sh->op_failed = 1; + } + + if (sh->op_failed) { sh->completion_cbk (frame, this); } else { gf_log (this->name, GF_LOG_TRACE, |