We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 546d69b commit fee74daCopy full SHA for fee74da
src/Queue/Connectors/RabbitMQConnector.php
@@ -73,7 +73,7 @@ protected function createConnection(array $config): AbstractConnection
73
$connection = Arr::get($config, 'connection', AMQPLazyConnection::class);
74
75
// manually disable heartbeat so long-running tasks will not fail
76
- Arr::set($config, 'options.heartbeat', 0);
+ Arr::add($config, 'options.heartbeat', 0);
77
78
return $connection::create_connection(
79
Arr::shuffle(Arr::get($config, 'hosts', [])),
0 commit comments