Skip to content

Commit

Permalink
Suggest raising restart-max-count upon too many restarts (#3294)
Browse files Browse the repository at this point in the history
Co-authored-by: Miloš Prchlík <[email protected]>
  • Loading branch information
skycastlelily and happz authored Oct 31, 2024
1 parent 1537bb7 commit 1220183
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tmt/steps/execute/internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,8 @@ def _run_tests(
else:
for result in invocation.results:
result.result = ResultOutcome.ERROR
result.note = 'crashed too many times'
result.note = ('crashed too many times, '
'you may want to set restart-max-count larger')

# Handle reboot, abort, exit-first
if invocation.reboot_requested:
Expand Down

0 comments on commit 1220183

Please sign in to comment.