From e00937c8fbf8bee70ce0c8c060cc7550a0ba3fec Mon Sep 17 00:00:00 2001 From: Thierry THONGKHAM Date: Mon, 13 Jun 2016 15:02:00 +0200 Subject: [PATCH 1/2] [FEATURE#29475] Composer rabbitmq - Fix du timeout --- src/RabbitMQServiceProvider.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/RabbitMQServiceProvider.php b/src/RabbitMQServiceProvider.php index 799bc6f..baf9aca 100644 --- a/src/RabbitMQServiceProvider.php +++ b/src/RabbitMQServiceProvider.php @@ -43,7 +43,11 @@ function () use ($app, $name, $options) { $options["user"], $options["password"], $options["vhost"], - [ 'verify_peer' => false ] + [ 'verify_peer' => false ], + [ + 'read_write_timeout' => 60, + 'heartbeat' => 30 + ] ]; $reflection = new \ReflectionClass($amqp_class); From bcfbcaf5a1853fb978877941c084592d1245d23b Mon Sep 17 00:00:00 2001 From: Thierry THONGKHAM Date: Mon, 13 Jun 2016 15:07:03 +0200 Subject: [PATCH 2/2] [FEATURE#29475] Composer rabbitmq - URL blu composer --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a5a9658..b55c5f1 100644 --- a/composer.json +++ b/composer.json @@ -35,7 +35,7 @@ "repositories": [ { "type": "composer", - "url": "http://blu-composer.herokuapp.com" + "url": "https://blu-composer.herokuapp.com" } ] }