orm
orm copied to clipboard
[BUG][QUESTION] failed job queue
HI,
I'm using lumen last version and I have configured the failed job configuration on the queue:
'failed' => [
'driver' => env('QUEUE_FAILED_DRIVER', 'database'),
'database' => env('DB_CONNECTION', 'mysql'),
'table' => 'failed_jobs',
],
Nothing is logged, the table was created correctly and I tried also to enable the FailedJobsServiceProvider.
Any suggests?
This you figure out what the problem was? @nsn0x01
the database will be your connection name instead of the database type e.g. mysql. Your connection name is in config/Doctrine.php in the managers->default array =