diff options
author | Pranith Kumar K <pranithk@gluster.com> | 2012-04-03 15:36:55 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2012-04-05 05:16:56 -0700 |
commit | 8b892fff8be9adca22c180a62d1dd01d83559330 (patch) | |
tree | 53ee99853b72abcb226c8ca6fceed24c17a917ed /xlators/cluster | |
parent | 6424f5a6cce467751fdfe991addc922a498d44fc (diff) |
self-heald: succeed heal info always
Succeeding the mgmt op enabled the rsp_dict to be used to get the
reason for the failures.
Change-Id: I781ded31afa5aafd717543a5339dee3f316aade8
BUG: 807556
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Reviewed-on: http://review.gluster.com/3076
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/cluster')
-rw-r--r-- | xlators/cluster/afr/src/afr-self-heald.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xlators/cluster/afr/src/afr-self-heald.c b/xlators/cluster/afr/src/afr-self-heald.c index 622e2eb3f..3dd268eba 100644 --- a/xlators/cluster/afr/src/afr-self-heald.c +++ b/xlators/cluster/afr/src/afr-self-heald.c @@ -545,7 +545,8 @@ afr_xl_op (xlator_t *this, dict_t *input, dict_t *output) ret = _do_self_heal_on_local_subvols (this, FULL, output); break; case GF_AFR_OP_INDEX_SUMMARY: - ret = _get_index_summary_on_local_subvols (this, output); + (void)_get_index_summary_on_local_subvols (this, output); + ret = 0; break; case GF_AFR_OP_HEALED_FILES: ret = _add_all_subvols_eh_to_dict (this, shd->healed, output); |