diff --git a/.yamato/script/log_scripts/utils/execution_log.py b/.yamato/script/log_scripts/utils/execution_log.py index 94cb1d7f921..1ba648de33a 100644 --- a/.yamato/script/log_scripts/utils/execution_log.py +++ b/.yamato/script/log_scripts/utils/execution_log.py @@ -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