Skip to content

Commit

Permalink
Tweaks and fixes on exa-cluster action
Browse files Browse the repository at this point in the history
  • Loading branch information
bobozaur committed Sep 5, 2024
1 parent 29fa51e commit 9d69b85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/exa-cluster/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@ runs:

- name: Wait until Exasol cluster is live
run: |
set +e
RC=1
while [[ $RC -ne 0 ]]; do
docker exec -it sqlx1 /bin/bash -c '`find /usr/opt -name exaplus | head -1` -c localhost:8563 -u sys -p exasol -sql "SELECT * FROM DUAL;"'
docker exec sqlx1 /bin/bash -c '`find /usr/opt -name exaplus | head -1` -c localhost:8563 -u sys -p exasol -sql "SELECT * FROM DUAL;"' &>/dev/null
RC=$?
sleep 5
done
Expand Down

0 comments on commit 9d69b85

Please sign in to comment.