feat(railiance): adopt state-hub edge relay beachhead for WP-0015
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 2s
Build and Publish Container Image / build-and-push (push) Successful in 1m12s

Deploy actcore-statehub-edge-relay, point STATE_HUB_URL at it, retire the
bespoke state-hub bridge, and accept edge-relay queued write receipts in
report and ops evidence sinks.
This commit is contained in:
tegwick 2026-07-09 01:04:24 +02:00
parent 1a0636845a
commit cdbe4de2bf
13 changed files with 256 additions and 136 deletions

View file

@ -9,8 +9,9 @@ from activity_core.report_sinks import persist_reports
class DummyResponse:
def __init__(self, payload: Any) -> None:
def __init__(self, payload: Any, *, status_code: int = 200) -> None:
self.payload = payload
self.status_code = status_code
def raise_for_status(self) -> None:
return None