From 60b7c10cf4dc17ebf49ff8b57b9c62e5ee8cf4b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Mon, 7 Jul 2025 23:41:44 +0200 Subject: [PATCH] RabbitMQ: set the max acknowledgment time to 6h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- roles/rabbitmq_cluster/templates/rabbitmq.conf.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/rabbitmq_cluster/templates/rabbitmq.conf.j2 b/roles/rabbitmq_cluster/templates/rabbitmq.conf.j2 index c55b83cca5..4f473ff24f 100644 --- a/roles/rabbitmq_cluster/templates/rabbitmq.conf.j2 +++ b/roles/rabbitmq_cluster/templates/rabbitmq.conf.j2 @@ -92,9 +92,9 @@ net_ticktime = 120 # Maximum time for consumers to process and acknowledge messages (in ms) # Defaults to 30 minutes. Package signing in robosignatory can take more -# than 1 hour, set the max to 2h. +# than 1 hour, set the max to 6h. # https://www.rabbitmq.com/docs/consumers#acknowledgement-timeout -consumer_timeout = 7200000 +consumer_timeout = 21600000 ## Logging settings.