From 21676454f1dad357cfceccf6a13b524efc6e6355 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Tue, 12 Sep 2017 16:47:48 -0400 Subject: [PATCH] task/internal/syslog: blacklist openstack datasource log Caused OVH node jobs to fail when it shouldn't have Signed-off-by: David Galloway --- 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 eb1540ec1..639cc7696 100644 --- a/teuthology/task/internal/syslog.py +++ b/teuthology/task/internal/syslog.py @@ -130,6 +130,8 @@ def syslog(ctx, config): run.Raw('|'), 'grep', '-v', 'INFO:ceph-create-keys', run.Raw('|'), + 'grep', '-v', 'Loaded datasource DataSourceOpenStack', + run.Raw('|'), 'head', '-n', '1', ], stdout=StringIO(), -- 2.47.3