disable sending timeout assert, we believe the underlying ngcft1
This commit is contained in:
parent
07099e4832
commit
60d6f27a12
@ -11,7 +11,8 @@ void SendingTransfers::tick(float delta) {
|
|||||||
// if we have not heard for 10min, timeout (lower level event on real timeout)
|
// if we have not heard for 10min, timeout (lower level event on real timeout)
|
||||||
// (2min was too little, so it seems)
|
// (2min was too little, so it seems)
|
||||||
// TODO: do we really need this if we get events?
|
// TODO: do we really need this if we get events?
|
||||||
if (it->second.time_since_activity >= 60.f*10.f) {
|
// FIXME: disabled for now, we are trusting ngcft1 for now
|
||||||
|
if (false && it->second.time_since_activity >= 60.f*10.f) {
|
||||||
std::cerr << "SHA1_NGCFT1 warning: sending tansfer timed out " << "." << int(it->first) << "\n";
|
std::cerr << "SHA1_NGCFT1 warning: sending tansfer timed out " << "." << int(it->first) << "\n";
|
||||||
assert(false);
|
assert(false);
|
||||||
it = peer_it->second.erase(it);
|
it = peer_it->second.erase(it);
|
||||||
|
Loading…
Reference in New Issue
Block a user