Add background driver (#6699)
* Add background driver Adds settings for PR https://github.com/laravel/framework/pull/57648 * Update queue.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
This commit is contained in:
@@ -25,7 +25,7 @@ return [
|
||||
| each backend supported by Laravel. You're also free to add more.
|
||||
|
|
||||
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
|
||||
| "deferred", "failover", "null"
|
||||
| "deferred", "background", "failover", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
@@ -77,6 +77,10 @@ return [
|
||||
'driver' => 'deferred',
|
||||
],
|
||||
|
||||
'background' => [
|
||||
'driver' => 'background',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'driver' => 'failover',
|
||||
'connections' => [
|
||||
|
||||
Reference in New Issue
Block a user