From 4db5b930af44cad6916931d7706af8d2f73437d7 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 17 Jul 2013 11:20:01 -0700 Subject: [PATCH] ceph: do not ignore osd leaks Signed-off-by: Sage Weil --- teuthology/task/ceph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 6234769617bc8..4b2cca629ce6d 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -233,7 +233,7 @@ def valgrind_post(ctx, config): log.error('failed to split line %s', line) raise log.debug('file %s kind %s', file, kind) - if (file.find('mds') >= 0 or file.find('osd') >= 0 or file.find('client') >= 0) and kind.find('Lost') > 0: + if (file.find('mds') >= 0 or file.find('client') >= 0) and kind.find('Lost') > 0: continue log.error('saw valgrind issue %s in %s', kind, file) valgrind_exception = Exception('saw valgrind issues') -- 2.39.5