Author: stack
Date: Tue Dec  7 18:54:32 2010
New Revision: 1043162

URL: http://svn.apache.org/viewvc?rev=1043162&view=rev
Log:
HBASE-2936 Differentiate between daemon & restart sleep periods

Modified:
    hbase/trunk/CHANGES.txt
    hbase/trunk/bin/hbase-daemon.sh

Modified: hbase/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=1043162&r1=1043161&r2=1043162&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Tue Dec  7 18:54:32 2010
@@ -18,6 +18,7 @@ Release 0.91.0 - Unreleased
    HBASE-3290  Max Compaction Size (Nicolas Spiegelberg via Stack)  
    HBASE-3292  Expose block cache hit/miss/evict counts into region server
                metrics
+   HBASE-2936  Differentiate between daemon & restart sleep periods
 
   NEW FEATURES
    HBASE-3287  Add option to cache blocks on hfile write and evict blocks on

Modified: hbase/trunk/bin/hbase-daemon.sh
URL: 
http://svn.apache.org/viewvc/hbase/trunk/bin/hbase-daemon.sh?rev=1043162&r1=1043161&r2=1043162&view=diff
==============================================================================
--- hbase/trunk/bin/hbase-daemon.sh (original)
+++ hbase/trunk/bin/hbase-daemon.sh Tue Dec  7 18:54:32 2010
@@ -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


Reply via email to