Skip to content
Snippets Groups Projects
Commit 7f0a3d8b authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Changed database for failed jobs

parent e3e795b7
No related branches found
No related tags found
2 merge requests!1382Development,!1381Changed database for failed jobs
......@@ -48,7 +48,7 @@ return [
'sqlite' => [
'driver' => 'sqlite',
'database' => database_path(env('DB_DATABASE', 'database.sqlite')),
'database' => database_path(env('SQLITE_DATABASE', 'database.sqlite')),
'prefix' => '',
],
......
......@@ -9,7 +9,7 @@ return [
| API, giving you convenient access to each back-end using the same
| syntax for every one. Here you may define a default connection.
|
*/
*/
'default' => env('QUEUE_CONNECTION', 'sync'),
/*
|--------------------------------------------------------------------------
......@@ -22,7 +22,7 @@ return [
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
*/
*/
'connections' => [
'sync' => [
'driver' => 'sync',
......@@ -64,9 +64,9 @@ return [
| can control which database and table are used to store the jobs that
| have failed. You may change them to any database / table you wish.
|
*/
*/
'failed' => [
'database' => env('DB_CONNECTION', 'mysql'),
'database' => 'sqlite',
'table' => 'failed_jobs',
],
];
\ No newline at end of file
];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment