We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b3737e commit fb3f6acCopy full SHA for fb3f6ac
1 file changed
.github/workflows/External-Storage-Tests.yml
@@ -38,12 +38,12 @@ jobs:
38
39
- name: Start LocalStack and create S3 bucket
40
run: |
41
- echo "Starting LocalStack 3.0.0..."
42
- docker run -d -p 4566:4566 --name localstack localstack/localstack:3.0.0
+ echo "Starting LocalStack 3.8.1..."
+ docker run -d -p 4566:4566 --name localstack localstack/localstack:3.8.1
43
44
echo "Waiting for LocalStack S3 service to be ready..."
45
for i in {1..60}; do
46
- if curl -s http://localhost:4566/health | grep '"s3": "running"' > /dev/null; then
+ if curl -s http://localhost:4566/_localstack/health | grep -q '"s3"'; then
47
echo "LocalStack S3 is ready!"
48
break
49
fi
0 commit comments