Test suggested fix for #3899

This commit is contained in:
Hardy 2017-06-11 18:14:19 +02:00 committed by GitHub
parent 697efbef21
commit bd8de76cea

View file

@ -871,7 +871,7 @@ public class RoutingHelper {
if (res.isCalculated()) {
route = res;
} else {
evalWaitInterval = evalWaitInterval * 3 / 2;
evalWaitInterval = Math.max(3000, evalWaitInterval * 3 / 2); // for Issue #3899
evalWaitInterval = Math.min(evalWaitInterval, 120000);
}
currentRunningJob = null;