[#861] Fail fast when the CI Test replication step hangs - #862
Merged
vharseko merged 1 commit intoAug 12, 2026
Merged
Conversation
…p hangs dsreplication enable can stall forever while initializing registration information on a newly added replica; without a step timeout such a hang holds the runner until the default 6-hour job limit. Cap the step at 30 minutes (normal duration is about 4 minutes).
maximthomas
approved these changes
Aug 12, 2026
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Refs #861.
The CI Test replication step can hang indefinitely inside
dsreplication enablewhile initializing registration information on a newly added replica — see #861 for the full analysis of https://github.com/OpenIdentityPlatform/OpenDJ/actions/runs/31506998550/job/93831146182, where the step produced its last log line 2 minutes in and then held the runner until GitHub killed the job at the default 6-hour limit.Cap the step with
timeout-minutes: 30: it normally completes in about 4 minutes across the whole matrix, so the margin is ~7x, while a hang now fails the job in 30 minutes instead of 6 hours.This is the fail-fast mitigation only; the underlying race in
dsreplication enableremains tracked in #861.