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 64ce332 commit 1024f58Copy full SHA for 1024f58
Earthfile
@@ -92,8 +92,7 @@ integration-test-mysql:
92
# the default authentication plugin for MySQL 8 is sha 256 but it doesn't come with the docker image. falling back to the 5.7 way
93
--default-authentication-plugin=mysql_native_password; \
94
# wait for mysql to start
95
- while ! mysqladmin ping --host=127.0.0.1 --port=3306 --protocol=TCP; do \
96
- docker logs mysql; \
+ while ! mysqladmin ping --host=127.0.0.1 --port=3306 --protocol=TCP --silent; do \
97
test "$(date +%s)" -le "$timeout" || (echo "timed out waiting for mysql"; exit 1); \
98
echo "waiting for mysql"; \
99
sleep 1; \
0 commit comments