]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
rgw: do not ignore leaks
authorSage Weil <sage@inktank.com>
Fri, 2 Aug 2013 18:57:14 +0000 (11:57 -0700)
committerSage Weil <sage@inktank.com>
Fri, 2 Aug 2013 19:00:18 +0000 (12:00 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
teuthology/task/ceph.py

index e50387d8062a07eaa67b4415405a8acfe8b4d426..4db72943ff06b128f2045f3be95324d5461a0220 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('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')