From 919ea213a7b23b69d935b3abfc37c7c34e970e4e Mon Sep 17 00:00:00 2001 From: Ed Sabol Date: Mon, 15 Sep 2025 19:56:56 -0400 Subject: [PATCH] Update haproxy.cfg to silence warning about 0 for server timeout This partially addresses issue #123 by changing the configured value of the server timeout for the docker-events backend from 0 to 30s. It silences the following warning message: [WARNING] While not properly invalid, you will certainly encounter various problems with such a configuration. To fix this, please ensure that all following timeouts are set to a non-zero value: 'client', 'connect', 'server'. --- haproxy.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haproxy.cfg b/haproxy.cfg index 9d0da3e..b944e92 100644 --- a/haproxy.cfg +++ b/haproxy.cfg @@ -41,7 +41,7 @@ backend dockerbackend backend docker-events server dockersocket $SOCKET_PATH - timeout server 0 + timeout server 30s frontend dockerfrontend bind ${BIND_CONFIG}