From 8a8f33704c9d5807677b8bf3531fbb6a175a35b6 Mon Sep 17 00:00:00 2001 From: chemavx Date: Thu, 23 Apr 2026 09:22:53 +0000 Subject: [PATCH] fix: smoke test grep to match compact JSON (no space after colon) --- polymarket-bot/postsync-smoke-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymarket-bot/postsync-smoke-test.yaml b/polymarket-bot/postsync-smoke-test.yaml index 633942e..ab55689 100644 --- a/polymarket-bot/postsync-smoke-test.yaml +++ b/polymarket-bot/postsync-smoke-test.yaml @@ -26,7 +26,7 @@ spec: SUMMARY=$(curl -sf --max-time 15 --retry 3 --retry-delay 5 --retry-all-errors \ "$API/api/summary") echo "$SUMMARY" - echo "$SUMMARY" | grep -qF '"paper_mode": true' \ + echo "$SUMMARY" | grep -qE '"paper_mode"\s*:\s*true' \ || { echo "FAIL: paper_mode is not true"; exit 1; } echo "OK"