diff --git a/adapters/outbound/util.go b/adapters/outbound/util.go index 1073c94e..5b8c774e 100644 --- a/adapters/outbound/util.go +++ b/adapters/outbound/util.go @@ -88,6 +88,6 @@ func selectFast(in chan interface{}) chan interface{} { func tcpKeepAlive(c net.Conn) { if tcp, ok := c.(*net.TCPConn); ok { tcp.SetKeepAlive(true) - tcp.SetKeepAlivePeriod(3 * time.Minute) + tcp.SetKeepAlivePeriod(30 * time.Second) } }