# HG changeset patch # User Matthew Wild # Date 1343066248 -3600 # Node ID 61083e2b1392455c90f54a7978e555e1ba494fb8 # Parent 164dc19519d8442a60e170845cc049820f06a224 mod_s2s: Bump s2s_timeout to 90, to allow for the TCP timeout (in most cases) - this allows us to continue to try other targets diff -r 164dc19519d8 -r 61083e2b1392 plugins/mod_s2s/mod_s2s.lua --- a/plugins/mod_s2s/mod_s2s.lua Mon Jul 23 18:28:14 2012 +0100 +++ b/plugins/mod_s2s/mod_s2s.lua Mon Jul 23 18:57:28 2012 +0100 @@ -30,7 +30,7 @@ local s2sout = module:require("s2sout"); -local connect_timeout = module:get_option_number("s2s_timeout", 60); +local connect_timeout = module:get_option_number("s2s_timeout", 90); local stream_close_timeout = module:get_option_number("s2s_close_timeout", 5); local sessions = module:shared("sessions");