From 98f35a5e491bb485fe74ff093ceb9694bbcba8e1 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 2 Aug 2013 11:57:14 -0700 Subject: [PATCH] rgw: do not ignore 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 e50387d8062..4db72943ff0 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('client') >= 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')