]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph: do not ignore osd leaks
authorSage Weil <sage@inktank.com>
Wed, 17 Jul 2013 18:20:01 +0000 (11:20 -0700)
committerSage Weil <sage@inktank.com>
Fri, 19 Jul 2013 01:05:25 +0000 (18:05 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
teuthology/task/ceph.py

index 6234769617bc8661d976dbb3aab03ca5070edfaa..4b2cca629ce6dd88bc57e6c4185fefd35c394f98 100644 (file)
@@ -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')