Increase UDP timeout
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Rob Watson 2022-07-15 21:14:55 +02:00
parent aecb10f981
commit 10ec839e1f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ type Conn interface {
const (
maxAttempts = 3
timeout = time.Second * 3
timeout = time.Second * 5
readBufferSizeBytes = 4_096
)