don't mark failing due to sendFailed (since that can be caused by a message that was about to expire anyway)

This commit is contained in:
jrandom
2004-07-07 16:11:46 +00:00
committed by zzz
parent 4c82970319
commit 0948686989

View File

@ -61,7 +61,7 @@ public class IsFailingCalculator extends Calculator {
return true;
}
if (profile.getLastSendFailed() >= recently) {
if (false && profile.getLastSendFailed() >= recently) {
if (_log.shouldLog(Log.DEBUG))
_log.debug("Peer " + profile.getPeer().toBase64()
+ " is failing because we couldnt send to it recently");