ops(enoomian-staging): codify sslip stream authority audit and runbook#134
Open
rndrntwrk wants to merge 4 commits into
Open
ops(enoomian-staging): codify sslip stream authority audit and runbook#134rndrntwrk wants to merge 4 commits into
rndrntwrk wants to merge 4 commits into
Conversation
`bunx playwright install --with-deps chromium` resolves the latest Playwright CLI from npm at each run. When npm republished the CLI on Apr 22 the bundled Chromium moved from v1208 to v1217, but every app's `@playwright/test` pin is still `1.58.2`, which expects `~/.cache/ms-playwright/chromium_headless_shell-1208/...`. The test runner crashed on every chain with `Executable doesn't exist`. Install from the app package's own `node_modules/.bin/playwright` so the CLI matches the pinned test runner version. `bun run dev:bootstrap` already populates the app package's `node_modules`, so this is a zero-cost swap. Restores: Cross-Chain E2E (solana|bsc|avax).
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
This draft PR codifies the enoomian staging stream-authority outage class that blocked Hyperbet playback even while the Cloudflare live input and manifest remained healthy.
The root problem was authority drift: public capture truth and internal bet-sync truth were sourced from different authorities, which allowed keeper readiness to fail closed before the Cloudflare player mounted.
Scope
Key Changes
1. Add an authority audit command
enoomian:authority:audittopackage.jsonscripts/enoomian-staging-authority-audit.ts2. Add a runbook for the exact incident class
docs/runbooks/enoomian-staging-stream-authority.md3. Link the runbook from the docs index
docs/runbooks/README.md4. Track the AWS GPU deploy rail used by enoomian staging
docs/runbooks/enoomian-aws-gpu-migration.mdscripts/enoomian-staging/deploy.shtargets forhyperscapes-aws-gpu-*scripts/enoomian-staging/aws-gpu.shfor AWS runtime env generation, code sync, and API/source deployment controlsscripts/enoomian-staging/deploy.test.shcoverage for AWS activation defaults, opt-in Railway syncs, RTMPS URL normalization, bearer-token propagation, and AWS-specific delivery-provider overridesscripts/enoomian-staging-secret-manifest.shso a fresh checkout has the variable manifest required by the deploy railValidation
bun scripts/enoomian-staging-authority-audit.tsagainst enoomian stagingcapture/statusreturned200true200PASSENOOMIAN_ALLOW_OFFBRANCH_DEPLOY=1 bash scripts/enoomian-staging/deploy.test.shon the PR branch after rebasehttps://3.129.45.146.sslip.io/live/stream.m3u8with visible fighters/avatarsReview Guidance
scripts/enoomian-staging-authority-audit.tsdocs/runbooks/enoomian-staging-stream-authority.mdscripts/enoomian-staging/scripts/enoomian-staging-secret-manifest.shdocs/runbooks/enoomian-aws-gpu-migration.mdpackage.jsondocs/runbooks/README.mdExplicit Non-Goals
This draft PR does not include Hyperbet app behavior changes, imported upstream feature work, Hyperscapes
/streamspectator fixes, local-only Caddy snapshots, or secrets/cookies/machine-specific runtime artifacts.