From a87648cac8344b27d2f42ffe49404a8406179c12 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Mon, 20 May 2024 21:37:11 -0500 Subject: [PATCH] Raise the timeout again, it is affecting some people --- common/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.go b/common/common.go index 314f55b..8209ee3 100644 --- a/common/common.go +++ b/common/common.go @@ -33,7 +33,7 @@ func DialXMPP(ctx context.Context, addr jid.JID, features ...xmpp.StreamFeature) func getDaneConfig(sni string, appname string, alpn string, service string, ip net.IP, port uint16) *dane.Config { config := dane.NewConfig(sni, ip, int(port)) config.SetDiagMode(true) - config.TimeoutTCP = 20 + config.TimeoutTCP = 30 config.DANE = true config.PKIX = true if alpn != "" { -- 2.45.2