Skip to content

Commit 001cc28

Browse files
chore: Remove debugging output from proxy test
Tests are now passing - removed diagnostic logging that was added during troubleshooting.
1 parent 8579233 commit 001cc28

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

.github/workflows/docker-startup-tests.yml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -467,25 +467,8 @@ jobs:
467467
sleep 1
468468
done
469469
470-
# Debug: Check if nginx is actually running and listening
471-
echo "=== Container Status ==="
472-
docker compose ps
473-
echo ""
474-
echo "=== Backend logs ==="
475-
docker compose logs purple-mcp-streamable-http | tail -30
476-
echo ""
477-
echo "=== Nginx logs ==="
478-
docker compose logs purple-mcp-proxy | tail -20
479-
echo ""
480-
echo "=== Checking if nginx is listening on port 443 ==="
481-
ss -tlnp | grep :443 || echo "Nothing listening on 443"
482-
echo ""
483-
484470
# Test authentication: 401 without Authorization header
485471
echo "Testing auth: expecting 401 without auth header..."
486-
echo "=== Curl verbose output ==="
487-
curl -k -vv --max-time 10 https://localhost/ 2>&1 || true
488-
echo ""
489472
http_code=$(curl -k -s -o /dev/null -w "%{http_code}" --max-time 10 https://localhost/)
490473
if [ "$http_code" != "401" ]; then
491474
echo "✗ Expected 401 without auth header, got $http_code"

0 commit comments

Comments
 (0)