Some fixes for registering hosts, enable jobs to go to postgres, initial setup fixes

This commit is contained in:
Deon George
2022-03-11 23:49:15 +11:00
parent cf3b1947a4
commit 4ff29e7e43
7 changed files with 38 additions and 5 deletions

View File

@@ -35,6 +35,7 @@ return [
],
'database' => [
'connection' => 'jobs',
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
@@ -79,7 +80,8 @@ return [
*/
'failed' => [
'database' => env('DB_CONNECTION', 'mysql'),
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
'database' => env('DB_JOBS_CONNECTION', 'jobs'),
'table' => 'failed_jobs',
],