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
Tag: symfony-messenger
Symfony Messenger: is it possible to not throw the exception on last retry?
We’re using Symfony Messenger, and have these transports: When we send a message to the async queue, and the last retry fails with an exception, the exception is logged to the MessengerMessages table, and the exception bubbles up (goes to Sentry in our case). This is what we want. When we send a message to the asyncLowPriority queue however, we
How to set event name and delay time in Envelope?
I’m using symfony 4 + enqueue (https://github.com/sroze/messenger-enqueue-transport + https://packagist.org/packages/enqueue/pheanstalk) to run async jobs in beanstalk. Right now I have: /** * @var …
Heroku : FFMpeg installed but php worker can’t find it
Context I’ve a RabbitMQ’s queue that contains AMQPMessage, those messages are referencing a video that needs to be treated (cut essentially and encoded in x264 also) Here’s the code that cause the …