Various code cleanup and fixed alignments.

This commit is contained in:
James Cole
2024-01-01 14:45:51 +01:00
parent f963ac63f1
commit f3773ebfc2
66 changed files with 460 additions and 460 deletions

View File

@@ -34,7 +34,7 @@ return [
|
*/
'default' => env('QUEUE_CONNECTION', 'sync'),
'default' => env('QUEUE_CONNECTION', 'sync'),
/*
|--------------------------------------------------------------------------
@@ -50,11 +50,11 @@ return [
*/
'connections' => [
'sync' => [
'sync' => [
'driver' => 'sync',
],
'database' => [
'database' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
@@ -69,7 +69,7 @@ return [
'block_for' => 0,
],
'sqs' => [
'sqs' => [
'driver' => 'sqs',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
@@ -79,7 +79,7 @@ return [
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'redis' => [
'redis' => [
'driver' => 'redis',
'connection' => 'default',
'queue' => env('REDIS_QUEUE', 'default'),
@@ -99,7 +99,7 @@ return [
|
*/
'failed' => [
'failed' => [
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
'database' => env('DB_CONNECTION', 'mysql'),
'table' => 'failed_jobs',