From d22641788a26e8d40fa7940fdc90e2602e814213 Mon Sep 17 00:00:00 2001 From: Raphael Philipe Mendes da Silva Date: Wed, 17 Jul 2024 16:59:39 -0700 Subject: [PATCH] Try to use loopback ip instead of localhost --- .github/scripts/integ-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/integ-tests.sh b/.github/scripts/integ-tests.sh index d2e1d65..bc58190 100755 --- a/.github/scripts/integ-tests.sh +++ b/.github/scripts/integ-tests.sh @@ -16,7 +16,7 @@ sleep 5 docker logs $CONTAINER_NAME -curl -s -H 'host: s3.amazonaws.com' http://localhost:8080 | grep ListAllMyBucketsResult +curl -s -H 'host: s3.amazonaws.com' http://127.0.0.1:8080 | grep ListAllMyBucketsResult result=$? docker stop $CONTAINER_NAME && docker rm $CONTAINER_NAME