Skip to content

Commit a6f899f

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 678a8a7 commit a6f899f

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)