Skip to content

Commit bf06e2f

Browse files
committed
fix(TaskProcessing): Increase MAX_TASK_AGE to 6 months
to comply with the EU AI act Signed-off-by: Marcel Klehr <mklehr@gmx.net>
1 parent c609dd2 commit bf06e2f

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 * 30 * 4; // 4 months
19+
public const MAX_TASK_AGE_SECONDS = 60 * 60 * 24 * 31 * 6; // 6 months
2020
private \OCP\Files\IAppData $appData;
2121

2222
public function __construct(

0 commit comments

Comments
 (0)