I'm attempting to use 0.4.* on a Laravel 6 project.
I'm finding that when I set the command_name to either queue:work or false the runJob method in the package Worker never gets called and instead the job is processed by the native Laravel Worker.
If I change the command_name to doctrine:queue:work or anything other than queue:work or false and call it, then the runJob method in the package Worker is called.
I have done the following:
composer require digbang/safe-queue:0.4.*
- Added
Digbang\SafeQueue\DoctrineQueueProvider::class to the app.php file.
- Create the
safequeue.php config file and specified the command_name.
Have I missed something?