We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8bd72a commit 35f518cCopy full SHA for 35f518c
1 file changed
.github/workflows/reusable-ruby-publish-migrated-db.yaml
@@ -196,6 +196,12 @@ jobs:
196
--ulimit nofile=262144:262144 \
197
clickhouse/clickhouse-server
198
docker cp ./config/clickhouse-config.xml clickhouse:/etc/clickhouse-server/config.xml
199
+ timeout 20s bash -c '
200
+ until curl -fsS http://localhost:8123/ping | grep -qx "Ok."; do
201
+ sleep 1
202
+ done
203
+ '
204
+ curl -fsS http://localhost:8123/ --data-binary "SELECT version()"
205
206
- name: Run clickhouse migrations
207
run: |
0 commit comments