From: Vasu Kulkarni Date: Fri, 26 Oct 2018 23:22:18 +0000 (-0700) Subject: dont fail on any WRN or ERR's during final log check. X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=1dbec84cce9635de18c7088975446cbbffb7a1bf;p=ceph.git dont fail on any WRN or ERR's during final log check. Signed-off-by: Vasu Kulkarni --- 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\]']: