Skip to content

Commit 76396a0

Browse files
Add background driver (laravel#6699)
* Add background driver Adds settings for PR laravel/framework#57648 * Update queue.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
1 parent 6576dc1 commit 76396a0

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

config/queue.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
| each backend supported by Laravel. You're also free to add more.
2626
|
2727
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
28-
| "deferred", "failover", "null"
28+
| "deferred", "background", "failover", "null"
2929
|
3030
*/
3131

@@ -77,6 +77,10 @@
7777
'driver' => 'deferred',
7878
],
7979

80+
'background' => [
81+
'driver' => 'background',
82+
],
83+
8084
'failover' => [
8185
'driver' => 'failover',
8286
'connections' => [

0 commit comments

Comments
 (0)