Imporve parsing of skipped messages. (#916)

This commit is contained in:
Felix Fontein
2024-07-06 21:10:39 +02:00
committed by GitHub
parent e2f93a0c66
commit 48c0cdf2c5
3 changed files with 34 additions and 2 deletions
+2 -2
View File
@@ -202,9 +202,9 @@ _RE_SKIPPED_EVENT = re.compile(
r'\s*'
r'(?P<resource_id>\S+)'
r'\s+'
r'Skipped -'
r'Skipped(?: -'
r'\s*'
r'(?P<msg>\S(?:|.*\S))'
r'(?P<msg>\S(?:|.*\S))|\s*)'
r'$'
)