From b81d5f37418fa6a3b5729a42b28b7b48f735b45d Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 10 Aug 2018 18:00:20 -0700 Subject: [PATCH] internal/syslog: whitelist ceph-crash daemon messages None of these should cause test failures. Signed-off-by: Dan Mick --- teuthology/task/internal/syslog.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/internal/syslog.py b/teuthology/task/internal/syslog.py index 6125ad9777..3c76b67ae5 100644 --- a/teuthology/task/internal/syslog.py +++ b/teuthology/task/internal/syslog.py @@ -134,6 +134,8 @@ def syslog(ctx, config): run.Raw('|'), 'grep', '-v', 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined', # noqa run.Raw('|'), + 'grep', '-v', 'ceph-crash', + run.Raw('|'), 'head', '-n', '1', ], stdout=StringIO(), -- 2.39.5