From: Sage Weil Date: Fri, 2 Aug 2013 18:57:14 +0000 (-0700) Subject: rgw: do not ignore leaks X-Git-Tag: 1.1.0~1997 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=98f35a5e491bb485fe74ff093ceb9694bbcba8e1;p=teuthology.git rgw: do not ignore leaks Signed-off-by: Sage Weil --- diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index e50387d806..4db72943ff 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')