Increase delay for removing stale workflows from 90 to 180 days

- Updated `KEEP_INTERVAL` in `CancelStaleWorkflowCronJob` to `P180D`.
This commit is contained in:
2026-01-15 10:08:40 +01:00
parent bf461a1211
commit 06c5affbe7
2 changed files with 7 additions and 1 deletions

View File

@@ -23,7 +23,7 @@ class CancelStaleWorkflowCronJob implements CronJobInterface
{
public const KEY = 'remove-stale-workflow';
public const KEEP_INTERVAL = 'P90D';
public const KEEP_INTERVAL = 'P180D';
private const LAST_CANCELED_WORKFLOW = 'last-canceled-workflow-id';