From 6a8af667c361310484380b433a412a2aa626b40a Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Sun, 16 Jul 2023 08:56:01 +0200 Subject: [PATCH] chore: increase timeouts --- command/command.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/command/command.go b/command/command.go index 3857807..95c99f5 100644 --- a/command/command.go +++ b/command/command.go @@ -19,9 +19,9 @@ type Conn interface { } const ( - maxAttempts = 3 - timeout = time.Second * 5 - readBufferSizeBytes = 4_096 + maxAttempts = 4 + timeout = time.Second * 10 + readBufferSizeBytes = 8_192 ) // Send writes the command to the provided Writer, and reads and validates the