From 4d28a657986b4f5595c266da22defc7f5f919ec9 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 21 Mar 2013 20:40:48 -0700 Subject: [PATCH] stop ignoring osd leaks Note that the mds is the only one left that we are ignoring. --- 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 fbaff38d4e2e3..66ac497b6c7e3 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -215,7 +215,7 @@ def valgrind_post(ctx, config): continue (file, kind) = line.split(':') log.debug('file %s kind %s', file, kind) - if file.find('client') < 0 and file.find('mon') < 0 and kind.find('Lost') > 0: + if file.find('mds') >= 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