Skip to content

Commit

Permalink
Force host and port
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-riggs committed Aug 20, 2024
1 parent 2e509d1 commit 61f06bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
tar xfz "dist/ispyb-database.tar.gz"

printf 'Waiting for MySQL database to accept connections'
until mariadb --defaults-file=.my.cnf -e "SHOW DATABASES" >/dev/null; do printf '.'; sleep 0.5; done
until mariadb --defaults-file=.my.cnf -h 0.0.0.0 -P 3306 -e "SHOW DATABASES" >/dev/null; do printf '.'; sleep 0.5; done
printf '\n'

mariadb -e "SET GLOBAL log_bin_trust_function_creators = 1;"
Expand Down

0 comments on commit 61f06bd

Please sign in to comment.