diff --git a/pkg/async-command/DependencyInjection/AsyncCommandExtension.php b/pkg/async-command/DependencyInjection/AsyncCommandExtension.php index 9bf17a124..2cfdf261c 100644 --- a/pkg/async-command/DependencyInjection/AsyncCommandExtension.php +++ b/pkg/async-command/DependencyInjection/AsyncCommandExtension.php @@ -19,7 +19,7 @@ public function load(array $configs, ContainerBuilder $container) 'client' => $client, 'command' => Commands::RUN_COMMAND, 'queue' => Commands::RUN_COMMAND, - 'queue_prefixed' => false, + 'prefix_queue' => false, 'exclusive' => true, ]) ->addTag('enqueue.transport.processor') diff --git a/pkg/async-event-dispatcher/DependencyInjection/AsyncEventDispatcherExtension.php b/pkg/async-event-dispatcher/DependencyInjection/AsyncEventDispatcherExtension.php index 8cb79ee98..0b16ca650 100644 --- a/pkg/async-event-dispatcher/DependencyInjection/AsyncEventDispatcherExtension.php +++ b/pkg/async-event-dispatcher/DependencyInjection/AsyncEventDispatcherExtension.php @@ -28,7 +28,7 @@ public function load(array $configs, ContainerBuilder $container) ->addTag('enqueue.processor', [ 'command' => Commands::DISPATCH_ASYNC_EVENTS, 'queue' => '%enqueue_events_queue%', - 'queue_prefixed' => false, + 'prefix_queue' => false, 'exclusive' => true, ]) ->addTag('enqueue.transport.processor')