We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 451c651 commit 6176f77Copy full SHA for 6176f77
.ci/run-elasticsearch.sh
@@ -89,7 +89,7 @@ fi
89
docker_pull_attempts=0
90
until [ "$docker_pull_attempts" -ge 5 ]
91
do
92
- docker pull docker.elastic.co/elasticsearch/"$elasticsearch_container" && break
+ docker pull -q docker.elastic.co/elasticsearch/"$elasticsearch_container" && break
93
docker_pull_attempts=$((docker_pull_attempts+1))
94
echo "Failed to pull image, retrying in 10 seconds (retry $docker_pull_attempts/5)..."
95
sleep 10
@@ -128,7 +128,7 @@ END
128
--ulimit memlock=-1:-1 \
129
--detach="$local_detach" \
130
--health-cmd="curl $cert_validation_flags --fail $elasticsearch_url/_cluster/health || exit 1" \
131
- --health-interval=2s \
+ --health-interval=5s \
132
--health-retries=20 \
133
--health-timeout=2s \
134
--rm \
0 commit comments