From c0b7c47615300142e67cc75711e95bcfefdc78c5 Mon Sep 17 00:00:00 2001 From: Fabian Gruber <1951610+basert@users.noreply.github.com> Date: Wed, 14 May 2025 10:40:56 +0200 Subject: [PATCH] fix(schedules): disable coroutine until we have proper pool support (#9759) --- src/Appwrite/Platform/Tasks/ScheduleBase.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Appwrite/Platform/Tasks/ScheduleBase.php b/src/Appwrite/Platform/Tasks/ScheduleBase.php index afd7d9d22a..8f7eab4d87 100644 --- a/src/Appwrite/Platform/Tasks/ScheduleBase.php +++ b/src/Appwrite/Platform/Tasks/ScheduleBase.php @@ -2,7 +2,6 @@ namespace Appwrite\Platform\Tasks; -use Swoole\Runtime; use Swoole\Timer; use Utopia\CLI\Console; use Utopia\Database\Database; @@ -66,8 +65,6 @@ abstract class ScheduleBase extends Action */ public function action(Group $pools, Database $dbForPlatform, callable $getProjectDB, Telemetry $telemetry): void { - Runtime::enableCoroutine(); - Console::title(\ucfirst(static::getSupportedResource()) . ' scheduler V1'); Console::success(APP_NAME . ' ' . \ucfirst(static::getSupportedResource()) . ' scheduler v1 has started');