Merge pull request #1243 from dsander/fix-docker-mysql-connection-check

Fix mysql connection check for multi-process docker image

Dominik Sander %!s(int64=9) %!d(string=hace) años
padre
commit
129f3d61c9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docker/multi-process/scripts/init

+ 1 - 1
docker/multi-process/scripts/init

@@ -118,7 +118,7 @@ EOF
118 118
 
119 119
   # wait for mysql server to start (max 120 seconds)
120 120
   timeout=120
121
-  while ! mysqladmin -u root status >/dev/null 2>&1
121
+  while ! mysqladmin -u root status >/dev/null 2>&1 && ! mysqladmin -u root --password=\${DATABASE_PASSWORD} status >/dev/null 2>&1
122 122
   do
123 123
     (( timeout = timeout - 1 ))
124 124
     if [ \$timeout -eq 0 ]; then