Skip to content

Commit 2223d3b

Browse files
Merge pull request #52656 from nextcloud/backport/52642/stable31
[stable31] fix(TaskProcessing): increase task cleanup delay
2 parents 58b6903 + e39d42c commit 2223d3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/TaskProcessing/RemoveOldTasksBackgroundJob.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Psr\Log\LoggerInterface;
1717

1818
class RemoveOldTasksBackgroundJob extends TimedJob {
19-
public const MAX_TASK_AGE_SECONDS = 60 * 60 * 24 * 7 * 4; // 4 weeks
19+
public const MAX_TASK_AGE_SECONDS = 60 * 60 * 24 * 30 * 4; // 4 months
2020
private \OCP\Files\IAppData $appData;
2121

2222
public function __construct(

0 commit comments

Comments
 (0)