1
0
Fork 0

doubling the wait interval in agency comm is way too peeimistic

This commit is contained in:
Kaveh Vahedipour 2016-12-29 16:10:14 +01:00
parent ba31d0e4a5
commit 3b62ab4b12
1 changed files with 1 additions and 1 deletions

View File

@ -1228,7 +1228,7 @@ AgencyCommResult AgencyComm::sendWithFailover(
if (tries > 0) {
std::this_thread::sleep_for(waitUntil-std::chrono::steady_clock::now());
if (waitInterval.count() < 5.0) {
waitInterval *= 2;
waitInterval *= 1.5;
}
}
} else {