From 10ec839e1fce9e24d0aef8492f2e7e870817a5ab Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Fri, 15 Jul 2022 21:14:55 +0200 Subject: [PATCH] Increase UDP timeout --- command/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/command.go b/command/command.go index c634038..3857807 100644 --- a/command/command.go +++ b/command/command.go @@ -20,7 +20,7 @@ type Conn interface { const ( maxAttempts = 3 - timeout = time.Second * 3 + timeout = time.Second * 5 readBufferSizeBytes = 4_096 )