deploy slice B + F: deploy/ artifacts + image-build + container smoke CI + tag-push publish #26

Merged
alee merged 11 commits from deploy-b/packaging-ci into docs/deployment-topology-spec 2026-07-06 19:53:33 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 1bc36c21b2 - Show all commits

View File

@@ -307,7 +307,7 @@ def main() -> int:
# cycle is the verification surface pre-A (image built + WS handshake
# succeeds + frames flow through Caddy TLS) — that's what we assert until
# Plan A merges, then enable the engine-reply fail() assertion.
ASSERT_ENGINE_REPLY = False # Set True once Plan A lands.
ASSERT_ENGINE_REPLY = True # Set True once Plan A lands.
if received < 1:
if ASSERT_ENGINE_REPLY:
fail("expected at least one engine-originated text frame (mark/outbound)")

View File

@@ -121,7 +121,7 @@ def main() -> int:
# containerized TLS — Plan A lands the hygiene that makes these assertions
# meaningful (without NODELAY + pings, WS frames may coalesce / quiet WS
# may die mid-reload for non-Plan-A reasons unrelated to stream_close_delay).
ASSERT_ZERO_DROPS = False # Set True once Plan A lands.
ASSERT_ZERO_DROPS = True # Set True once Plan A lands.
if ws_dropped:
if ASSERT_ZERO_DROPS:
fail("WS dropped during caddy reload — stream_close_delay mitigation "