test(integration): probe public readiness endpoint instead of guarded aggregate health#74
Merged
Merged
Conversation
… aggregate health Aggregate /actuator/health requires X-Admin-API-Key since cycles-server v0.1.25.45 and fails closed with 500 when the server has no admin key configured — this assertion has been the visible failure in the org nightly Full-Stack Integration since 2026-06-28. The liveness/readiness probes are the public, Redis-aware health contract a credential-less client can rely on; the health-check test now probes /actuator/health/readiness. Integration-test-only; no library code change, no version bump. AUDIT.md updated. Companion PRs: runcycles/.github (workflow readiness polling + event-server management port) and the sibling client repo.
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.
Summary
Integration-test-only fix: the live-server health check now probes
/actuator/health/readinessinstead of aggregate/actuator/health.Aggregate health requires
X-Admin-API-Keysince cycles-server v0.1.25.45 and fails closed with 500 when the server has no admin key configured. The liveness/readiness probes are the public, Redis-aware health contract that a credential-less client can rely on — asserting on them is also the more meaningful check for a client test.This assertion is what has been failing the org nightly Full-Stack Integration since 2026-06-28 (
assert 500 == 200).No library code change, no version bump. AUDIT.md updated.
Companion PRs