Remove the obsolete provider-dependent extended health endpoint - #913
Open
AnthonyRonning wants to merge 2 commits into
Open
Remove the obsolete provider-dependent extended health endpoint#913AnthonyRonning wants to merge 2 commits into
AnthonyRonning wants to merge 2 commits into
Conversation
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.
Remove
/health-check-extendedentirely, including its Tinfoil model-list request and outbound-connectivity response fields. A provider outage must not make a responsive enclave fail origin health. The canonical/health-checkremains a state-free HTTP 200 endpoint returning{"status":"pass","version":"v1"}.Both public HTTP and Transport V2 application routing use the same health router. There is no compatibility alias: direct HTTP requests to the removed path return 404. No in-tree SDK, app, proxy, or CI caller uses that path; SDK health checks already use
/health-check. Update any remaining monitors and deployment scripts before deploying the endpoint removal.Validation through the pinned backend Nix environment with stateful shell hooks disabled:
cargo fmt --all -- --checkRUSTFLAGS="-D warnings" cargo test --locked --all-features web::health_routes::tests: 1 passed; actual loopback HTTP verifies canonical 200 JSON and removed-path 404 with no application dependencies.RUSTFLAGS="-D warnings" cargo clippy --locked --all-targets --all-features -- -D warningsRUSTFLAGS="-D warnings" cargo test --locked --all-features: 636 passed, 23 ignored, 0 failed.The monorepo commit hook requires unrelated frontend Prettier, which is absent in this backend workspace. A command-scoped hook bypass was used after backend validation; no persistent hook configuration changed.
No PCR approvals or enclave deployments are part of this PR. Monitor migration to
/health-checkworks with already-deployed older backends.