Increase timeout
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2022-03-06 20:43:19 +01:00
parent 95dccc3e75
commit a2856ad82a

View file

@ -33,7 +33,7 @@ func main() {
}
//setup a timeout to prevent slow clients blocking. See https://github.com/golang/go/issues/16100
timeoutListener, err := newListener("tcp", server.Addr, time.Second*5, time.Second*5)
timeoutListener, err := newListener("tcp", server.Addr, time.Second*15, time.Second*30)
if err != nil {
log.Panic(err)
}