Skip to content

Commit

Permalink
feat: add defaut queue name
Browse files Browse the repository at this point in the history
  • Loading branch information
papac committed Jan 13, 2025
1 parent 59734a3 commit 978bba4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* The sync connexion
*/
"sync" => [
"queue" => "default",
"directory" => storage_path("cache/queue")
],

Expand All @@ -24,12 +25,14 @@
"hostname" => "127.0.0.0",
"port" => 11300,
"timeout" => 10,
"queue" => "default",
],

/**
* The sqs connexion
*/
"sqs" => [
"queue" => "default",
"url" => app_env("SQS_URL"),
'region' => app_env('AWS_REGION'),
'version' => 'latest',
Expand All @@ -43,6 +46,7 @@
* The database connexion
*/
"database" => [
"queue" => "default",
"table" => "queues",
]
]
Expand Down

0 comments on commit 978bba4

Please sign in to comment.