diff options
-rw-r--r-- | support-files/mysql.server.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support-files/mysql.server.sh b/support-files/mysql.server.sh index be8a8bd741e..ac7a9c25ce6 100644 --- a/support-files/mysql.server.sh +++ b/support-files/mysql.server.sh @@ -155,7 +155,6 @@ wait_for_pid () { i=0 avoid_race_condition="by checking again" while test $i -ne $service_startup_timeout ; do - sleep 1 case "$verb" in 'created') @@ -191,6 +190,7 @@ wait_for_pid () { echo $echo_n ".$echo_c" i=`expr $i + 1` + sleep 1 done if test -z "$i" ; then |