From c9b9e4db97ba8ba8c45fc09f0d29eabc468efc76 Mon Sep 17 00:00:00 2001 From: Maciek Kisiel Date: Thu, 19 Feb 2026 15:19:00 +0000 Subject: [PATCH] chore: increase timeout for conformance server start. We're experiencing some timeouts on server conformance test runs. This should fix it. --- .github/workflows/conformance.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 7a2e65f5..dfe5b34b 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -27,7 +27,7 @@ jobs: run: | go run ./conformance/everything-server/main.go -http=":3001" & # Wait for the server to be ready. - timeout 15 bash -c 'until curl -s http://localhost:3001/mcp; do sleep 0.5; done' + timeout 30 bash -c 'until curl -s http://localhost:3001/mcp; do sleep 0.5; done' - name: "Run conformance tests" uses: modelcontextprotocol/conformance@c2f3fdaf781dcd5a862cb0d2f6454c1c210bf0f0 # v0.1.11 with: