mirror of
https://github.com/ceph/ceph
synced 2025-02-21 18:17:42 +00:00
rgw: do not ignore leaks
Signed-off-by: Sage Weil <sage@inktank.com>
This commit is contained in:
parent
9110c7d8ca
commit
98f35a5e49
@ -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')
|
||||
|
Loading…
Reference in New Issue
Block a user