Commit 77c5c172 authored by Tuomas Koponen's avatar Tuomas Koponen

Change default value for queue.failed.database

Use same DB_CONNECTION enviroment variable for queue.failed.database config
parent 421c0d0a
......@@ -87,7 +87,8 @@ return [
*/
'failed' => [
'database' => 'mysql', 'table' => 'failed_jobs',
'database' => env('DB_CONNECTION', 'mysql'),
'table' => 'failed_jobs',
],
];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment