From 3787fca93266798f332d760efc967d5d980cb1e5 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Fri, 28 Aug 2015 23:29:35 +0200 Subject: [PATCH] internal: ceph-deploy may have ceph-create-keys INFO in syslog This is not a concern for error and should be ignored. Signed-off-by: Loic Dachary --- teuthology/task/internal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index a275f7870..ef7023e40 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -677,6 +677,8 @@ def syslog(ctx, config): run.Raw('|'), 'grep', '-v', 'INFO: recovery required on readonly', run.Raw('|'), + 'grep', '-v', 'ceph-create-keys: INFO', + run.Raw('|'), 'head', '-n', '1', ], stdout=StringIO(), -- 2.47.3