From 7b52dd1410fb4877da216510e8b820ba3cc55074 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Thu, 8 Dec 2011 17:17:47 -0800 Subject: [PATCH] syslog: ignore 'task blocked' warnings These will happen under heavy load (usually on the osd). --- teuthology/task/internal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/internal.py b/teuthology/task/internal.py index 62709a1d8a70e..a9f882311d296 100644 --- a/teuthology/task/internal.py +++ b/teuthology/task/internal.py @@ -364,6 +364,8 @@ kern.* -/tmp/cephtest/archive/syslog/kern.log;RSYSLOG_FileFormat 'BUG|INFO|DEADLOCK', run.Raw('/tmp/cephtest/archive/syslog/*.log'), run.Raw('|'), + 'grep', '-v', 'task .* blocked for more than .* seconds', + run.Raw('|'), 'head', '-n', '1', ], stdout=StringIO(), -- 2.39.5