Skip to content

Commit

Permalink
Merge pull request #11 from TinyTinyKame/feature/29475
Browse files Browse the repository at this point in the history
[FEATURE#29475] Composer rabbitmq
  • Loading branch information
SparSio authored Jun 13, 2016
2 parents 3e603a9 + bcfbcaf commit 7e629f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"repositories": [
{
"type": "composer",
"url": "http://blu-composer.herokuapp.com"
"url": "https://blu-composer.herokuapp.com"
}
]
}
6 changes: 5 additions & 1 deletion src/RabbitMQServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7e629f4

Please sign in to comment.