Remove unnecessary code and comments

This commit is contained in:
Andras Bacsai 2024-04-02 15:40:52 +02:00
parent 6333d3fd13
commit 7f4230d026

View File

@ -325,7 +325,6 @@ private function deploy_simple_dockerfile()
executeInDocker($this->deployment_uuid, "echo '$dockerfile_base64' | base64 -d > {$this->workdir}{$this->dockerfile_location}")
],
);
// TODO: If the image exists and envs are changed, they are not applied.
$this->generate_image_names();
if (!$this->force_rebuild) {
$this->check_image_locally_or_remotely();
@ -1374,7 +1373,6 @@ private function generate_environment_variables($ports)
$environment_variables = collect();
if ($this->pull_request_id === 0) {
foreach ($this->application->runtime_environment_variables as $env) {
ray($env);
// This is necessary because we have to escape the value of the environment variable
// but only if the environment variable is created after 4.0.0-beta.240
// when I implemented the escaping feature.