mirror of
https://github.com/nextcloud/server.git
synced 2026-05-19 16:39:59 -04:00
fix(TaskProcessing): Increase MAX_TASK_AGE to 6 months
to comply with the EU AI act Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
c609dd20b4
commit
bf06e2fd67
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ use OCP\Files\SimpleFS\ISimpleFolder;
|
|||
use Psr\Log\LoggerInterface;
|
||||
|
||||
class RemoveOldTasksBackgroundJob extends TimedJob {
|
||||
public const MAX_TASK_AGE_SECONDS = 60 * 60 * 24 * 30 * 4; // 4 months
|
||||
public const MAX_TASK_AGE_SECONDS = 60 * 60 * 24 * 31 * 6; // 6 months
|
||||
private \OCP\Files\IAppData $appData;
|
||||
|
||||
public function __construct(
|
||||
|
|
|
|||
Loading…
Reference in a new issue