From 11f9ea488f9b28df07b63d88de0d7848df9d9c08 Mon Sep 17 00:00:00 2001 From: shahargl Date: Sat, 16 Nov 2024 18:13:32 +0200 Subject: [PATCH] feat: wip --- .github/workflows/test-haproxy-ingress.yml | 2 +- .github/workflows/test-nginx-ingress.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-haproxy-ingress.yml b/.github/workflows/test-haproxy-ingress.yml index b764333..14fa1ec 100644 --- a/.github/workflows/test-haproxy-ingress.yml +++ b/.github/workflows/test-haproxy-ingress.yml @@ -206,7 +206,7 @@ jobs: test_endpoint "http://$INGRESS_IP/" 307 || exit 1 echo "šŸ”Œ Testing backend endpoint..." - test_endpoint "http://$INGRESS_IP/v2/docs/" 200 || exit 1 + test_endpoint "http://$INGRESS_IP/v2/docs" 200 || exit 1 echo "šŸ”„ Testing websocket endpoint..." test_endpoint "http://$INGRESS_IP/websocket/" 101 "-H 'Upgrade: websocket' -H 'Connection: Upgrade'" || \ diff --git a/.github/workflows/test-nginx-ingress.yml b/.github/workflows/test-nginx-ingress.yml index 5644a01..7eee331 100644 --- a/.github/workflows/test-nginx-ingress.yml +++ b/.github/workflows/test-nginx-ingress.yml @@ -160,7 +160,7 @@ jobs: echo -e "\nBackend (/v2/docs) - Should return API info:" for i in {1..5}; do echo -e "\nAttempt $i of 5..." - RESP=$(curl -v http://localhost/v2/docs/ 2>&1) + RESP=$(curl -v http://localhost/v2/docs 2>&1) echo -e "\nšŸ“‹ Response Headers:" echo "$RESP" | grep -E "^< " || echo "No headers found"