fix(deploy): kill switch for Safe House harness gates#119
Merged
alexgarden-mnemom merged 1 commit intomainfrom May 8, 2026
Merged
fix(deploy): kill switch for Safe House harness gates#119alexgarden-mnemom merged 1 commit intomainfrom
alexgarden-mnemom merged 1 commit intomainfrom
Conversation
Both fast-lane-harness and nightly-recency are informational. Add SAFE_HOUSE_HARNESS_DISABLED repo variable so they can be skipped without code changes while the harness is being repaired. Without this, cancelling a stuck run is futile — the next dispatch (~minutes later under normal traffic) supersedes via concurrency and restarts the 45-min poll. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
vars.SAFE_HOUSE_HARNESS_DISABLED != '1'to theif:clauses onfast-lane-harnessandnightly-recency. Both are already informational (per the comments and ADR-048 cutover 2026-05-07), so disabling them does not affect the prod gate.gh variable set SAFE_HOUSE_HARNESS_DISABLED --body 1 --repo mnemom/deploy.Why now
The fast-lane harness is broken and being fixed. While broken, cancelling a stuck run is futile: the deploy.yml
concurrencygroup hascancel-in-progress: trueplus acancel-stale-runsjob that proactively kills older runs in the same(repo, env)group. Under normal traffic (mnemom-api + mnemom-platform), a fresh dispatch lands within minutes, supersedes the cancel, and the 45-minute fast-lane poll restarts from zero.Test plan
SAFE_HOUSE_HARNESS_DISABLED=1; confirm both Safe House jobs show as skipped on the next deploy.🤖 Generated with Claude Code