diff options
author | Atin Mukherjee <amukherj@redhat.com> | 2015-12-11 15:15:53 +0530 |
---|---|---|
committer | Atin Mukherjee <amukherj@redhat.com> | 2015-12-24 21:04:29 -0800 |
commit | 88bf33555371ae01dd297aecf8666d7121309b80 (patch) | |
tree | 4860c828aa2d1defb48086562070265cf047193f /xlators | |
parent | f624abd6885752eeaa8d07101ff00f52af48de26 (diff) |
glusterd: correct ret code in glusterd_volume_status_copy_to_op_ctx_dict
This patch is to supress the error log of Failed to aggregate rsp_dict where the
above function returns a non zero ret which is not required
Change-Id: If331980291bd369690257215333cea175e2042ec
BUG: 1290734
Signed-off-by: Atin Mukherjee <amukherj@redhat.com>
Reviewed-on: http://review.gluster.org/12950
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Gaurav Kumar Garg <ggarg@redhat.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c index 3a02234d691..c7183345e29 100644 --- a/xlators/mgmt/glusterd/src/glusterd-utils.c +++ b/xlators/mgmt/glusterd/src/glusterd-utils.c @@ -8186,6 +8186,10 @@ glusterd_volume_status_copy_to_op_ctx_dict (dict_t *aggr, dict_t *rsp_dict) if (ret) goto out; } + } else { + /* Ignore the error as still the aggregation applies in + * case its a task sub command */ + ret = 0; } } |