Skip to content

Commit 77c5c17

Browse files
committed
Change default value for queue.failed.database
Use same DB_CONNECTION enviroment variable for queue.failed.database config
1 parent 421c0d0 commit 77c5c17

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

config/queue.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@
8787
*/
8888

8989
'failed' => [
90-
'database' => 'mysql', 'table' => 'failed_jobs',
90+
'database' => env('DB_CONNECTION', 'mysql'),
91+
'table' => 'failed_jobs',
9192
],
9293

9394
];

0 commit comments

Comments
 (0)