From cd4436fe6d6d17a92a5c51b0bdd1056db1a95e98 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Tue, 15 Feb 2022 21:53:17 +0400 Subject: [PATCH] feat: remove var_dump() --- app/executor.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/executor.php b/app/executor.php index 643e2ae2c..fcb4f4ee6 100644 --- a/app/executor.php +++ b/app/executor.php @@ -34,8 +34,8 @@ use Utopia\Validator\Text; // Remove multiple request attempt to the runtime logic in executor - done // Remove builds param from delete endpoint - done // Shutdown callback isn't working as expected - done +// Fix error handling - done -// Fix error handling // Fix logging // Fix delete endpoint // Incorporate Matej's changes in the build stage ( moving of the tar file will be performed by the runtime and not the build stage ) @@ -437,7 +437,6 @@ App::delete('/v1/runtimes/:runtimeId') $orchestration->remove($container, true); $activeRuntimes->del($container); Console::success('Removed runtime container: ' . $container); - } catch (\Throwable $th) { } finally { $orchestrationPool->put($orchestration); }