Skip to content

Commit

Permalink
Use same default queue name for all drivers (laravel#5549)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaffe-fr authored Mar 2, 2021
1 parent 20455c6 commit 2b8f3aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
'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'),
],
Expand Down

0 comments on commit 2b8f3aa

Please sign in to comment.