Increase timeout for mysql waiting

Current one is way too low, even for empty DB.
Proper fix will be added in the following patches.

Change-Id: I4ac3917d947daa8b525d446f85b6077887ee4163
This commit is contained in:
Proskurin Kirill 2017-01-24 13:51:30 +00:00
parent 9a3ee32d48
commit 100c479844
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ def wait_for_mysqld(proc):
def wait_for_mysqld_to_start(proc, insecure):
LOG.info("Waiting mysql to start...")
for i in range(0, 29):
for i in range(0, 299):
try:
mysql_client = get_mysql_client(insecure=insecure)
mysql_exec(mysql_client, [("SELECT 1", None)])