From c17a8a4219ed84617670c5583d23c99a4b655616 Mon Sep 17 00:00:00 2001 From: matst80 Date: Thu, 21 Nov 2024 22:27:09 +0100 Subject: [PATCH] allow longer wait --- tcp-connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcp-connection.go b/tcp-connection.go index c8a82e8..05e3a4a 100644 --- a/tcp-connection.go +++ b/tcp-connection.go @@ -169,7 +169,7 @@ func (c *Connection) Listen() (*GenericListener, error) { } const ( - MaxCallDuration = 300 * time.Millisecond + MaxCallDuration = 900 * time.Millisecond ListenerKeepalive = 5 * time.Second )