You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ns...@apache.org on 2011/10/11 04:02:06 UTC

svn commit: r1181363 - /hbase/branches/0.89/bin/hbase-daemon.sh

Author: nspiegelberg
Date: Tue Oct 11 02:02:06 2011
New Revision: 1181363

URL: http://svn.apache.org/viewvc?rev=1181363&view=rev
Log:
HBASE-2936: Differentiate between daemon & restart sleep periods (for rolling restarts)

Modified:
    hbase/branches/0.89/bin/hbase-daemon.sh

Modified: hbase/branches/0.89/bin/hbase-daemon.sh
URL: http://svn.apache.org/viewvc/hbase/branches/0.89/bin/hbase-daemon.sh?rev=1181363&r1=1181362&r2=1181363&view=diff
==============================================================================
--- hbase/branches/0.89/bin/hbase-daemon.sh (original)
+++ hbase/branches/0.89/bin/hbase-daemon.sh Tue Oct 11 02:02:06 2011
@@ -181,7 +181,7 @@ case $startStop in
     $thiscmd --config "${HBASE_CONF_DIR}" stop $command $args &
     wait_until_done $!
     # wait a user-specified sleep period
-    sp=${HBASE_SLAVE_SLEEP:-3}
+    sp=${HBASE_RESTART_SLEEP:-3}
     if [ $sp -gt 0 ]; then
       sleep $sp
     fi