Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .yamato/script/log_scripts/utils/execution_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_patterns(self):
# Successful retries have no concrete pattern to match: the only difference with failed retry is that it does not contain 'Failed after n retries',
# but no working regex for matching multiline against a negative lookahead was found yet.
# Therefore, this pattern must come after failed retry pattern (python logic will handle recognizing this block as a successful retry)
'pattern': r'(Retrying)',
'pattern': r'(######################################## Retrying ########################################)',
'tags': [TAG_SUCCESFUL_RETRY],
'conclusion': 'success',
'add_if': add_successful_retry_if
Expand Down