From 2eda703c3a5bd344f2927fda54353d459dbfbafd Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Mon, 3 Nov 2025 12:22:05 +0100 Subject: [PATCH] openvidu-e2e-tests.sh: remove unnecessary basic auth from curl wait command --- ci-scripts/openvidu-e2e-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-scripts/openvidu-e2e-tests.sh b/ci-scripts/openvidu-e2e-tests.sh index 05237f339..63bf286d9 100755 --- a/ci-scripts/openvidu-e2e-tests.sh +++ b/ci-scripts/openvidu-e2e-tests.sh @@ -86,7 +86,7 @@ function environmentLaunch { -DOPENVIDU_WEBHOOK_ENDPOINT=http://127.0.0.1:7777/webhook \ /opt/openvidu/openvidu-server-*.jar &>/opt/openvidu/openvidu-server-"${MEDIA_SERVER}".log & fi - until $(curl --insecure --output /dev/null --silent --head --fail https://OPENVIDUAPP:MY_SECRET@localhost:4443/openvidu/api/config/openvidu-publicurl); do + until $(curl --insecure --output /dev/null --silent --head --fail https://localhost:4443/openvidu/api/config/openvidu-publicurl); do echo "Waiting for openvidu-server..." sleep 2 done