Skip to content

Commit 6377e33

Browse files
committed
config(queue): fix queue names
1 parent c14fc1c commit 6377e33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config/queue.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
'database' => [
3434
'driver' => 'database',
3535
'table' => 'jobs',
36-
'queue' => env('QUEUE_STANDARD', 'default'),
36+
'queue' => env('QUEUE_STANDARD', 'standard'),
3737
'retry_after' => 90,
3838
'after_commit' => false,
3939
],
@@ -43,7 +43,7 @@
4343
'key' => env('AWS_ACCESS_KEY_ID'),
4444
'secret' => env('AWS_SECRET_ACCESS_KEY'),
4545
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
46-
'queue' => env('SQS_QUEUE', env('QUEUE_STANDARD', 'default')),
46+
'queue' => env('SQS_QUEUE', env('QUEUE_STANDARD', 'standard')),
4747
'suffix' => env('SQS_SUFFIX'),
4848
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
4949
'after_commit' => false,
@@ -52,7 +52,7 @@
5252
'redis' => [
5353
'driver' => 'redis',
5454
'connection' => 'default',
55-
'queue' => env('REDIS_QUEUE', env('QUEUE_STANDARD', 'default')),
55+
'queue' => env('REDIS_QUEUE', env('QUEUE_STANDARD', 'standard')),
5656
'retry_after' => 90,
5757
'block_for' => null,
5858
'after_commit' => false,

0 commit comments

Comments
 (0)