selfcheck.py: don’t show 'different index' warnings

This commit is contained in:
Oleg Kalachev
2021-12-16 13:41:14 +03:00
parent d27bbf31bd
commit bb6a6c81f3

View File

@@ -648,7 +648,7 @@ def check_clover_service():
elif 'failed' in output:
failure('service failed to run, check your launch-files')
BLACKLIST = 'Unexpected command 520', 'Time jump detected'
BLACKLIST = 'Unexpected command 520', 'Time jump detected', 'different index:'
r = re.compile(r'^(.*)\[(FATAL|ERROR| WARN)\] \[\d+.\d+\]: (.*?)(\x1b(.*))?$')
error_count = OrderedDict()