From 1dbec84cce9635de18c7088975446cbbffb7a1bf Mon Sep 17 00:00:00 2001 From: Vasu Kulkarni Date: Fri, 26 Oct 2018 16:22:18 -0700 Subject: [PATCH] dont fail on any WRN or ERR's during final log check. Signed-off-by: Vasu Kulkarni --- qa/tasks/ceph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/ceph.py b/qa/tasks/ceph.py index d3932ba5a940a..edb0e9f6bc0f4 100644 --- a/qa/tasks/ceph.py +++ b/qa/tasks/ceph.py @@ -966,7 +966,7 @@ def cluster(ctx, config): if first_in_ceph_log('\[ERR\]|\[WRN\]|\[SEC\]', config['log_whitelist']) is not None: log.warning('Found errors (ERR|WRN|SEC) in cluster log') - ctx.summary['success'] = False + # ctx.summary['success'] = False # use the most severe problem as the failure reason if 'failure_reason' not in ctx.summary: for pattern in ['\[SEC\]', '\[ERR\]', '\[WRN\]']: -- 2.39.5