File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2424 // seconds of running time after which the worker will terminate (0 = unlimited)
2525 'workermaxruntime ' => 0 ,
2626
27- // amount of time that a worker will attempt to spend on a cleanup job before timing out
27+ // minimum time (in seconds) which a task remains in the database before being cleaned up.
2828 'cleanuptimeout ' => 2000 ,
2929
3030 // instruct a Workerprocess quit when there are no more tasks for it to execute (true = exit, false = keep running)
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ You may create a file called "queue.php" inside your 'APP/Config' folder (NOT th
8888
8989 $config['Queue']['exitwhennothingtodo'] = false;
9090
91- - Minimum number of seconds before cleanup runs . Defaults to 0 for the Queue worker, or 2592000 for the Cron worker.
91+ - Minimum number of seconds before a cleanup run will remove a completed task . Defaults to 0 for the Queue worker, or 2592000 for the Cron worker.
9292
9393 $config['Queue']['cleanuptimeout'] = 2592000; // 30 days
9494
You can’t perform that action at this time.
0 commit comments