From 8d59a058a9863d2fa5dfefe8680128e5c80fb110 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Fri, 28 Jan 2022 16:26:58 +0400 Subject: [PATCH] feat: put db and redis workers back in the pool --- app/executor.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/executor.php b/app/executor.php index 537767d2e6..c16d8d4844 100644 --- a/app/executor.php +++ b/app/executor.php @@ -993,7 +993,6 @@ App::delete('/v1/functions/:functionId') $orchestration->remove('appwrite-function-' . $deployment['$id'], true); Console::info('Removed container for deployment ' . $deployment['$id']); } catch (\Throwable $th) { - // Do nothing, we don't care that much if it fails Console::error($th->getMessage()); } finally { $orchestrationPool->put($orchestration); @@ -1084,7 +1083,6 @@ App::delete('/v1/deployments/:deploymentId') $orchestration->remove('appwrite-function-' . $deployment['$id'], true); Console::info('Removed container for deployment ' . $deployment['$id']); } catch (\Throwable $th) { - // Do nothing, we don't care that much if it fails Console::error($th->getMessage()); } finally { $orchestrationPool->put($orchestration);