From 9a8132f15ac446ef9c1c84b33abacb5d78aaf3ba Mon Sep 17 00:00:00 2001 From: Guillaume Dubost Date: Wed, 12 Oct 2016 15:57:42 +0200 Subject: [PATCH] =?UTF-8?q?[FIX#36025]=20Suppression=20de=20la=20gestion?= =?UTF-8?q?=20du=20timeout=20cot=C3=A9=20connection=20rabbitmq?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On fait désormais confiance au HAProxy pour gérer les timeout --- src/RabbitMQServiceProvider.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/RabbitMQServiceProvider.php b/src/RabbitMQServiceProvider.php index b25c449..3b33c9d 100644 --- a/src/RabbitMQServiceProvider.php +++ b/src/RabbitMQServiceProvider.php @@ -46,11 +46,6 @@ function () use ($app, $name, $options) { $amqp_class = 'PhpAmqpLib\Connection\AMQPConnection'; } - $amqp_args[] = [ - 'read_write_timeout' => 60, - 'heartbeat' => 30 - ]; - $reflection = new \ReflectionClass($amqp_class); $connection = $reflection->newInstanceArgs($amqp_args);