Add until to hopefully stop race condition
parent
a33aa7a2cb
commit
35a73025c7
|
@ -1,5 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
until mysqladmin ping --host mysql --silent; do
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
# Wait for MySQL to warm-up
|
# Wait for MySQL to warm-up
|
||||||
while mysqladmin ping --host mysql --silent; do
|
while mysqladmin ping --host mysql --silent; do
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue