List:Commits« Previous MessageNext Message »
From:Chad MILLER Date:March 19 2008 10:36pm
Subject:bk commit into 5.0 tree (cmiller:1.2587)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of cmiller.  When cmiller does a push these changes
will be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2008-03-19 18:36:41-04:00, cmiller@stripped +1 -0
  Suggestion of Tim.  Avoid unnecessary sleep.

  support-files/mysql.server.sh@stripped, 2008-03-19 18:36:39-04:00, cmiller@stripped +1 -1
    Suggestion of Tim.  Avoid unnecessary sleep.

diff -Nrup a/support-files/mysql.server.sh b/support-files/mysql.server.sh
--- a/support-files/mysql.server.sh	2008-03-19 18:13:55 -04:00
+++ b/support-files/mysql.server.sh	2008-03-19 18:36:39 -04:00
@@ -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
Thread
bk commit into 5.0 tree (cmiller:1.2587)Chad MILLER19 Mar