1
Fork 0

Reduce server-side timeout.

This commit is contained in:
Juliusz Chroboczek 2024-06-10 21:32:11 +02:00
parent 7151fad149
commit ee18b60226
1 changed files with 2 additions and 3 deletions

View File

@ -1007,13 +1007,12 @@ func clientLoop(c *webClient, ws *websocket.Conn, versionError bool) error {
}
}
case <-ticker.C:
if time.Since(readTime) > 75*time.Second {
if time.Since(readTime) > 45*time.Second {
return errors.New("client is dead")
}
// Some reverse proxies timeout connexions at 60
// seconds, make sure we generate some activity
// after 55s at most.
if time.Since(readTime) > 45*time.Second {
if time.Since(readTime) > 20*time.Second {
err := c.write(clientMessage{
Type: "ping",
})