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", ] ]