1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00

feat: remove var_dump()

This commit is contained in:
Christy Jacob 2022-02-15 21:53:17 +04:00
parent 2674186f3b
commit cd4436fe6d

View file

@ -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);
}