Merge "check mariadb galera status in every loop."

This commit is contained in:
Jenkins 2017-04-12 11:12:53 +00:00 committed by Gerrit Code Review
commit 5d653fa9df
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ function bootstrap_db {
CLUSTER_READY=$(mysql -u root --exec="SHOW STATUS LIKE 'wsrep_ready'" | grep ON)
TIMEOUT=${DB_MAX_TIMEOUT:-60}
while [[ -z "${CLUSTER_READY}" ]]; do
CLUSTER_READY=$(mysql -u root --exec="SHOW STATUS LIKE 'wsrep_ready'" | grep ON)
if [[ ${TIMEOUT} -gt 0 ]]; then
let TIMEOUT-=1
sleep 1