From: Sage Weil Date: Wed, 17 Jul 2013 18:20:01 +0000 (-0700) Subject: ceph: do not ignore osd leaks X-Git-Tag: 1.1.0~2073 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4db5b930af44cad6916931d7706af8d2f73437d7;p=teuthology.git ceph: do not ignore osd leaks Signed-off-by: Sage Weil --- diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 623476961..4b2cca629 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')