fix(TaskProcessing): increase task cleanup delay

Signed-off-by: Edward Ly <contact@edward.ly>
This commit is contained in:
Edward Ly 2025-05-05 11:24:13 -07:00
parent 58b69034f8
commit e39d42c182

View file

@ -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 * 7 * 4; // 4 weeks
public const MAX_TASK_AGE_SECONDS = 60 * 60 * 24 * 30 * 4; // 4 months
private \OCP\Files\IAppData $appData;
public function __construct(