Skip to content
Advertisement

Tag: symfony-messenger

Message not dispatched async despite configuring the handler route to be async in Symfony Messenger

I’m working with Symfony 4.4 and Symfony Messenger Messenger configuration includes a transport and routing: Though the handler looks like configured correctly (when I run console debug:messenger it shows up correctly assigned to transport) The message class SnowplowMessage is not queued, but sent instantly to the _invoke() method of the handler. I’m using AMQP (RabbitMQ as transport) and it’s configured

Advertisement