From bfbb3a71bfc9bf5aa292fe369e92650b276c47c3 Mon Sep 17 00:00:00 2001 From: Franck DAKIA Date: Mon, 13 Jan 2025 21:21:23 +0000 Subject: [PATCH] feat: add defaut queue name --- config/queue.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/queue.php b/config/queue.php index 96b04fc..715454a 100644 --- a/config/queue.php +++ b/config/queue.php @@ -14,7 +14,7 @@ * The sync connexion */ "sync" => [ - "directory" => storage_path("cache/queue") + "queue" => "default", ], /** @@ -24,12 +24,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', @@ -43,6 +45,7 @@ * The database connexion */ "database" => [ + "queue" => "default", "table" => "queues", ] ]