HBASE-5639 The logic used in waiting for region servers during startup is broken (J-D and NKeyval)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1306012 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
larsh 2012-03-27 20:40:13 +00:00
parent 83e552c3b3
commit 16ad2b2898
1 changed files with 1 additions and 1 deletions

View File

@ -587,7 +587,7 @@ public class ServerManager {
!this.master.isStopped() &&
slept < timeout &&
count < maxToStart &&
!(lastCountChange+interval > now && count >= minToStart)
(lastCountChange+interval > now || count < minToStart)
){
// Log some info at every interval time or if there is a change