X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/b24279cc120fd1ae40c705ddaf3235f8e9a2ab32..refs/pull/3032/head:/app/Config/queue.php diff --git a/app/Config/queue.php b/app/Config/queue.php index 46f6962c5..0c79fcdd2 100644 --- a/app/Config/queue.php +++ b/app/Config/queue.php @@ -17,24 +17,23 @@ return [ // Queue connection configuration 'connections' => [ - 'sync' => [ 'driver' => 'sync', ], 'database' => [ - 'driver' => 'database', - 'table' => 'jobs', - 'queue' => 'default', + 'driver' => 'database', + 'table' => 'jobs', + 'queue' => 'default', 'retry_after' => 90, ], 'redis' => [ - 'driver' => 'redis', - 'connection' => 'default', - 'queue' => env('REDIS_QUEUE', 'default'), + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), 'retry_after' => 90, - 'block_for' => null, + 'block_for' => null, ], ],