From 0911e5493b92368f08c2c8bc8b1fb02d71ea09c8 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 10 Jun 2013 10:45:05 -0700 Subject: [PATCH] ceph: ignore ceph-osd leaks for now :( --- 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 2412d6bbf75a8..dfa1eafdcf37c 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -219,7 +219,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 and kind.find('Lost') > 0: + if (file.find('mds') >= 0 or file.find('osd') >= 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