YARN-5834. TestNodeStatusUpdater.testNMRMConnectionConf compares nodemanager wait time to the incorrect value. (Chang Li via kasha)

This commit is contained in:
Karthik Kambatla 2016-11-10 14:08:51 -08:00
parent 89354f0475
commit 3a98419532
1 changed files with 3 additions and 3 deletions

View File

@ -1524,13 +1524,13 @@ public class TestNodeStatusUpdater {
long t = System.currentTimeMillis();
long duration = t - waitStartTime;
boolean waitTimeValid = (duration >= nmRmConnectionWaitMs) &&
(duration < (connectionWaitMs + delta));
(duration < (nmRmConnectionWaitMs + delta));
if(!waitTimeValid) {
// throw exception if NM doesn't retry long enough
throw new Exception("NM should have tried re-connecting to RM during " +
"period of at least " + connectionWaitMs + " ms, but " +
"stopped retrying within " + (connectionWaitMs + delta) +
"period of at least " + nmRmConnectionWaitMs + " ms, but " +
"stopped retrying within " + (nmRmConnectionWaitMs + delta) +
" ms: " + e, e);
}
}