]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
stop ignoring osd leaks
authorSage Weil <sage@inktank.com>
Fri, 22 Mar 2013 03:40:48 +0000 (20:40 -0700)
committerSage Weil <sage@inktank.com>
Fri, 22 Mar 2013 03:40:48 +0000 (20:40 -0700)
Note that the mds is the only one left that we are ignoring.

teuthology/task/ceph.py

index fbaff38d4e2e39b47496304f6d14f0a73d2e15ed..66ac497b6c7e3b4db47516892743dd1c87b1895b 100644 (file)
@@ -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')