fix: rerun retries COMPLETED_WITH_FAILURES actions#568
Merged
Muizzkolapo merged 1 commit intoMay 19, 2026
Merged
Conversation
Actions with partial failures (COMPLETED_WITH_FAILURES) were preserved on rerun, causing the entire action to be skipped. Failed records were never reprocessed unless the user explicitly ran the retry CLI command. Add COMPLETED_WITH_FAILURES to the retryable set in reset_retryable() so plain reruns reset these actions to PENDING and reprocess them. Extract the inline retryable set to a module-level RETRYABLE_STATUSES constant, consistent with COMPLETED_STATUSES and TERMINAL_STATUSES.
48a6e52
into
integration/batch-online-unification
1 check passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
COMPLETED_WITH_FAILURES) were preserved on rerun, causing the entire action to be skipped — failed records were never reprocessed unless the user explicitly used theretryCLI commandCOMPLETED_WITH_FAILURESto the retryable set inreset_retryable()so plain reruns reset these actions to PENDINGRETRYABLE_STATUSESconstant, consistent withCOMPLETED_STATUSESandTERMINAL_STATUSESVerification
test_resets_completed_with_failuresasserts the new behaviorruff check+ruff format --checkclean