From 8204828d40014bccc4d8c99dbd3400b38446a271 Mon Sep 17 00:00:00 2001 From: Drew Newberry Date: Wed, 2 Sep 2026 07:58:39 -0700 Subject: [PATCH] fix(ci): wait for snap gateway readiness Signed-off-by: Drew Newberry --- .github/workflows/release-canary.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release-canary.yml b/.github/workflows/release-canary.yml index 937e774db7..f8b5fafba7 100644 --- a/.github/workflows/release-canary.yml +++ b/.github/workflows/release-canary.yml @@ -202,6 +202,17 @@ jobs: sudo snap services openshell openshell gateway add http://127.0.0.1:17670 --local --name snap-docker openshell gateway select snap-docker + + for _ in {1..60}; do + if openshell status >/dev/null 2>&1; then + openshell status + exit 0 + fi + sleep 1 + done + + sudo snap services openshell + sudo snap logs openshell.gateway -n=100 || true openshell status kubernetes: