Skip to content

Commit 8b114cb

Browse files
authored
Merge pull request #717 from GCalmels/master
Fix async command/event pkgs
2 parents 4b2f1cf + 1d4a46a commit 8b114cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/async-command/DependencyInjection/AsyncCommandExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function load(array $configs, ContainerBuilder $container)
1919
'client' => $client,
2020
'command' => Commands::RUN_COMMAND,
2121
'queue' => Commands::RUN_COMMAND,
22-
'queue_prefixed' => false,
22+
'prefix_queue' => false,
2323
'exclusive' => true,
2424
])
2525
->addTag('enqueue.transport.processor')

pkg/async-event-dispatcher/DependencyInjection/AsyncEventDispatcherExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function load(array $configs, ContainerBuilder $container)
2828
->addTag('enqueue.processor', [
2929
'command' => Commands::DISPATCH_ASYNC_EVENTS,
3030
'queue' => '%enqueue_events_queue%',
31-
'queue_prefixed' => false,
31+
'prefix_queue' => false,
3232
'exclusive' => true,
3333
])
3434
->addTag('enqueue.transport.processor')

0 commit comments

Comments
 (0)