fix: Tap healthcheck uses wget instead of curl The Tap container (alpine-based) doesn't have curl, causing healthcheck failures every 30s. After 10 retries Docker restarts the container, creating a crash loop that prevents WebSocket connections from staying alive and delivering backfill events.
Author: Aaron Steven White
Commit
4c57b9c8f0c61d9ea195ac853e8c22da3243064bParent: c6164844e3
Structural diff unavailable
These commits were pushed via plain git push, so no pre-parsed
schemas are available. Install git-remote-cospan and re-push via panproto:// to
see scope-level changes, breaking change detection, and semantic diffs.
brew install panproto/tap/git-remote-cospan1 file changed +1 -1
@@ -120,7 +120,7 @@ services:
120120 limits: 121121 memory: 512M 122122 healthcheck: 123- test: ["CMD-SHELL", "curl -sf http://localhost:2480/health || exit 1"] 123+ test: ["CMD-SHELL", "wget -q -O- http://localhost:2480/health || exit 1"] 124124 interval: 30s 125125 timeout: 10s 126126 retries: 10