forked from I2P_Developers/i2p.i2p
duh (oops)
This commit is contained in:
@ -137,7 +137,7 @@ class RouterThrottleImpl implements RouterThrottle {
|
|||||||
if (avg < numTunnels) {
|
if (avg < numTunnels) {
|
||||||
// we're accelerating, lets try not to take on too much too fast
|
// we're accelerating, lets try not to take on too much too fast
|
||||||
double probAccept = avg / numTunnels;
|
double probAccept = avg / numTunnels;
|
||||||
if (_context.random().nextDouble() >= probAccept) {
|
if (_context.random().nextDouble() < probAccept) {
|
||||||
// ok
|
// ok
|
||||||
} else {
|
} else {
|
||||||
if (_log.shouldLog(Log.WARN))
|
if (_log.shouldLog(Log.WARN))
|
||||||
@ -156,7 +156,7 @@ class RouterThrottleImpl implements RouterThrottle {
|
|||||||
double avg60m = tunnelTestTime60m.getAverageValue();
|
double avg60m = tunnelTestTime60m.getAverageValue();
|
||||||
if (avg10m > avg60m) {
|
if (avg10m > avg60m) {
|
||||||
double probAccept = avg60m/avg10m;
|
double probAccept = avg60m/avg10m;
|
||||||
if (_context.random().nextDouble() >= probAccept) {
|
if (_context.random().nextDouble() < probAccept) {
|
||||||
// ok
|
// ok
|
||||||
} else {
|
} else {
|
||||||
if (_log.shouldLog(Log.WARN))
|
if (_log.shouldLog(Log.WARN))
|
||||||
|
Reference in New Issue
Block a user