route_replies: Increase the timeout

Instead of generating a "this module hit a BUG" after 20s this module now waits
60s for a reply. This should cause less "wrong" bug reports for us.


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1657 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2009-11-13 21:35:24 +00:00
parent cf98214587
commit 91962e32fc
+1 -1
View File
@@ -321,7 +321,7 @@ private:
pTimer->Stop();
UnlinkTimer(pTimer);
}
AddTimer(new CRouteTimeout(this, 20, 1, "RouteTimeout",
AddTimer(new CRouteTimeout(this, 60, 1, "RouteTimeout",
"Recover from missing / wrong server replies"));
m_pDoing = it->first;