Skip to content

Commit b12b38b

Browse files
authored
Merge pull request #55579 from nextcloud/fix/taskprocessing/max-task-age-6-months
fix(TaskProcessing): Increase MAX_TASK_AGE to 6 months
2 parents d84d6ca + a6f899f commit b12b38b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/TaskProcessing/Manager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class Manager implements IManager {
7979
'ai.taskprocessing_provider_preferences',
8080
];
8181

82-
public const MAX_TASK_AGE_SECONDS = 60 * 60 * 24 * 30 * 4; // 4 months
82+
public const MAX_TASK_AGE_SECONDS = 60 * 60 * 24 * 31 * 6; // 6 months
8383

8484
private const TASK_TYPES_CACHE_KEY = 'available_task_types_v3';
8585
private const TASK_TYPE_IDS_CACHE_KEY = 'available_task_type_ids';

0 commit comments

Comments
 (0)