]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
dont fail on any WRN or ERR's during final log check.
authorVasu Kulkarni <vasu@redhat.com>
Fri, 26 Oct 2018 23:22:18 +0000 (16:22 -0700)
committerVasu Kulkarni <vasu@redhat.com>
Mon, 3 Dec 2018 19:42:39 +0000 (11:42 -0800)
Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
qa/tasks/ceph.py

index d3932ba5a940af0120ddface91b6f27cdffa8626..edb0e9f6bc0f40b970e8dfc864e56d415a9fd07a 100644 (file)
@@ -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\]']: