Skip to content

Commit a43226d

Browse files
Change QUEUE_CONNECTION default to database (#2803)
`QUEUE_CONNECTION` is currently set to `sync` by default. We recommend using asynchronous workers for production systems, which means that CDash administrators have to perform unnecessary configuration right out of the box. This PR changes the default to `database`, meaning that asynchronous parsing is now the default behavior.
1 parent 07e0fce commit a43226d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config/queue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
|
1313
*/
1414

15-
'default' => env('QUEUE_CONNECTION', 'sync'),
15+
'default' => env('QUEUE_CONNECTION', 'database'),
1616

1717
/*
1818
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)