Skip to content

Commit 12c61e4

Browse files
committed
Add proxy startup delay and debug logging
1 parent 8d23e3a commit 12c61e4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ proxy : test_proxy
5656
docker compose up -d
5757
@echo "Waiting for proxy to be ready..."
5858
@until nc -z localhost 3128 && nc -z localhost 3129; do sleep 1; done
59+
@echo "Proxy servers are ready, waiting additional 5 seconds for full startup..."
60+
@sleep 5
61+
@echo "Checking proxy server status..."
62+
@cd proxy && docker compose ps
63+
@echo "Checking proxy server logs..."
64+
@cd proxy && docker compose logs --tail=20
5965
@echo "Running proxy tests..."
6066
./test_proxy; \
6167
exit_code=$$?; \

0 commit comments

Comments
 (0)