From c947357a8dbb50cb406a2c98a9f7fc1173c631c8 Mon Sep 17 00:00:00 2001 From: Laravel Shift Date: Wed, 31 Mar 2021 17:12:48 +0000 Subject: [PATCH] Shift config files --- config/app.php | 1 + config/broadcasting.php | 2 +- config/logging.php | 1 + config/queue.php | 6 +++++- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/config/app.php b/config/app.php index 94cff7d9..da1f2ff4 100644 --- a/config/app.php +++ b/config/app.php @@ -179,6 +179,7 @@ return [ */ 'aliases' => [ + 'Date' => Illuminate\Support\Facades\Date::class, 'Str' => Illuminate\Support\Str::class, 'Arr' => Illuminate\Support\Arr::class, diff --git a/config/broadcasting.php b/config/broadcasting.php index ef208598..2d529820 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -11,7 +11,7 @@ return [ | framework when an event needs to be broadcast. You may set this to | any of the connections defined in the "connections" array below. | - | Supported: "pusher", "redis", "log", "null" + | Supported: "pusher", "ably", "redis", "log", "null" | */ diff --git a/config/logging.php b/config/logging.php index 6aa77fe2..1aa06aa3 100644 --- a/config/logging.php +++ b/config/logging.php @@ -74,6 +74,7 @@ return [ 'stderr' => [ 'driver' => 'monolog', + 'level' => env('LOG_LEVEL', 'debug'), 'handler' => StreamHandler::class, 'formatter' => env('LOG_STDERR_FORMATTER'), 'with' => [ diff --git a/config/queue.php b/config/queue.php index 12222966..25ea5a81 100644 --- a/config/queue.php +++ b/config/queue.php @@ -39,6 +39,7 @@ return [ 'table' => 'jobs', 'queue' => 'default', 'retry_after' => 90, + 'after_commit' => false, ], 'beanstalkd' => [ @@ -47,6 +48,7 @@ return [ 'queue' => 'default', 'retry_after' => 90, 'block_for' => 0, + 'after_commit' => false, ], 'sqs' => [ @@ -54,9 +56,10 @@ return [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), - 'queue' => env('SQS_QUEUE', 'your-queue-name'), + 'queue' => env('SQS_QUEUE', 'default'), 'suffix' => env('SQS_SUFFIX'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), + 'after_commit' => false, ], 'redis' => [ @@ -65,6 +68,7 @@ return [ 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => 90, 'block_for' => null, + 'after_commit' => false, ], ],