orm icon indicating copy to clipboard operation
orm copied to clipboard

[BUG][QUESTION] failed job queue

Open nsn0x01 opened this issue 4 years ago • 2 comments

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?

nsn0x01 avatar Jul 20 '20 18:07 nsn0x01

This you figure out what the problem was? @nsn0x01

eigan avatar Jan 31 '21 10:01 eigan

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 =

ukenpachi avatar Nov 11 '21 17:11 ukenpachi