diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2013-12-05 10:59:18 -0500 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2013-12-05 10:59:18 -0500 |
commit | 8acebe6d639500d90288a34c6d0cbc217fe2f1ca (patch) | |
tree | 0fd78aa0902f5616c5dcd7f449cce4c36b6fb4ec | |
parent | f41ee56df7b7cd841a2d9ac6a753f752742cd2ee (diff) | |
download | mariadb-git-8acebe6d639500d90288a34c6d0cbc217fe2f1ca.tar.gz |
MDEV#5384: Update init script in MariaDB Cluster
Reduced the sleep time to 10secs.
-rw-r--r-- | support-files/mysql.server.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support-files/mysql.server.sh b/support-files/mysql.server.sh index 911924c7ee2..8da75c92a6c 100644 --- a/support-files/mysql.server.sh +++ b/support-files/mysql.server.sh @@ -196,9 +196,9 @@ wait_for_pid () { fi fi - if test -e $sst_progress_file && [ $startup_sleep -ne 100 ];then + if test -e $sst_progress_file && [ $startup_sleep -ne 10 ];then echo $echo_n "SST in progress, setting sleep higher" - startup_sleep=100 + startup_sleep=10 fi echo $echo_n ".$echo_c" |