This commit is contained in:
Konstantin Bogdanov 2024-08-21 20:30:13 +02:00
parent f74b580dda
commit 09dfec99c7
No known key found for this signature in database

View File

@ -7,7 +7,7 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# Sanity check to ensure that the server is up and running
for i in {1..10}; do
for _ in {1..10}; do
echo 'SELECT 1' | ${CLICKHOUSE_CURL_COMMAND} -s "${CLICKHOUSE_URL}" --data-binary @- > /dev/null
if [ $? -eq 0 ]; then
break