Skip to content

Commit

Permalink
Merge pull request #115 from alleyinteractive/queue
Browse files Browse the repository at this point in the history
queue
  • Loading branch information
srtfisher authored Sep 16, 2022
2 parents 08f5d6a + 0eabf50 commit 78e517e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
| The amount of items handled in one run of the queue.
|
*/
'batch_size' => 5,
'batch_size' => environment( 'QUEUE_BATCH_SIZE', 5 ),

/*
|--------------------------------------------------------------------------
Expand All @@ -37,6 +37,6 @@
*/
'wordpress' => [
// Delay between queue runs in seconds.
'delay' => 300,
'delay' => environment( 'QUEUE_DELAY', 0 ),
],
];

0 comments on commit 78e517e

Please sign in to comment.