We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d034336 commit 7471ccfCopy full SHA for 7471ccf
DependencyInjection/Compiler/RegisterPartsPass.php
@@ -25,6 +25,7 @@ public function process(ContainerBuilder $container)
25
'old_sound_rabbit_mq.consumer',
26
'old_sound_rabbit_mq.multi_consumer',
27
'old_sound_rabbit_mq.anon_consumer',
28
+ 'old_sound_rabbit_mq.batch_consumer',
29
'old_sound_rabbit_mq.rpc_client',
30
'old_sound_rabbit_mq.rpc_server',
31
);
DependencyInjection/OldSoundRabbitMqExtension.php
@@ -442,6 +442,7 @@ protected function loadAnonConsumers()
442
{
443
foreach ($this->config['anon_consumers'] as $key => $anon) {
444
$definition = new Definition('%old_sound_rabbit_mq.anon_consumer.class%');
445
+ $definition->setPublic(true);
446
$definition
447
->setPublic(true)
448
->addTag('old_sound_rabbit_mq.base_amqp')
0 commit comments