From aed59967b721f306d30d582c0c6e948d83065290 Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Mon, 23 Feb 2026 14:44:34 -0500 Subject: [PATCH] fix(make): Reduce profile-ws-queue test count to prevent timeouts Change -count=5 to -count=2 to avoid resource contention 5 sequential runs with 60s timeout each could exceed reasonable time limits --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 77999b7..b30d728 100644 --- a/Makefile +++ b/Makefile @@ -339,7 +339,7 @@ profile-load-norate: profile-ws-queue: @echo "CPU profiling WebSocket queue integration test..." @mkdir -p tests/bin - go test ./tests/integration -run WebSocketQueue -count=5 -cpuprofile tests/bin/cpu_ws.out + go test ./tests/integration -run WebSocketQueue -count=2 -cpuprofile tests/bin/cpu_ws.out @echo "${OK} CPU profile written to cpu_ws.out (inspect with: go tool pprof tests/bin/cpu_ws.out)" # Chaos engineering tests