From f648d82c8c49f7bd92e6df0a4630648043256f64 Mon Sep 17 00:00:00 2001 From: Hemachandar <132386067+hmacr@users.noreply.github.com> Date: Tue, 3 Feb 2026 01:18:34 +0530 Subject: [PATCH] Remove cleanup-stale-executions from Interval task (#11224) --- src/Appwrite/Platform/Tasks/Interval.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Appwrite/Platform/Tasks/Interval.php b/src/Appwrite/Platform/Tasks/Interval.php index b83cbb8185..6d431705ab 100644 --- a/src/Appwrite/Platform/Tasks/Interval.php +++ b/src/Appwrite/Platform/Tasks/Interval.php @@ -84,13 +84,6 @@ class Interval extends Action $this->verifyDomain($dbForPlatform, $queueForCertificates); }, 'interval' => $intervalDomainVerification * 1000, - ], - [ - 'name' => 'cleanupStaleExecutions', - 'callback' => function (Database $dbForPlatform, callable $getProjectDB, Certificate $queueForCertificates) { - $this->cleanupStaleExecutions($dbForPlatform, $getProjectDB); - }, - 'interval' => $intervalCleanupStaleExecutions * 1000, ] ]; }