diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 89ec6feea..31760f2fd 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -46,7 +46,7 @@ class Kernel extends ConsoleKernel $this->instance_auto_update($schedule); $this->check_scheduled_backups($schedule); $this->check_resources($schedule); - // $this->pull_helper_image($schedule); + $this->pull_helper_image($schedule); $this->check_scheduled_tasks($schedule); $schedule->command('cleanup:database --yes')->daily(); diff --git a/app/Jobs/ApplicationDeploymentJob.php b/app/Jobs/ApplicationDeploymentJob.php index 0207e4a80..52afdd47e 100644 --- a/app/Jobs/ApplicationDeploymentJob.php +++ b/app/Jobs/ApplicationDeploymentJob.php @@ -24,7 +24,6 @@ use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; use Illuminate\Support\Collection; -use Illuminate\Support\Facades\Log; use Illuminate\Support\Sleep; use Illuminate\Support\Str; use RuntimeException; @@ -744,7 +743,6 @@ class ApplicationDeploymentJob implements ShouldQueue, ShouldBeEncrypted $envs = $envs->sort(function ($a, $b) { return strpos($a, '$') === false ? -1 : 1; }); - Log::info("message", $envs->implode("\n")); } else { $this->env_filename = ".env"; foreach ($this->application->environment_variables as $env) { @@ -999,10 +997,6 @@ class ApplicationDeploymentJob implements ShouldQueue, ShouldBeEncrypted } $this->application_deployment_queue->addLogEntry("Preparing container with helper image: $helperImage."); $this->execute_remote_command( - [ - "command" => "docker pull -q {$helperImage}", - "hidden" => true - ], [ "command" => "docker rm -f {$this->deployment_uuid}", "ignore_errors" => true, diff --git a/config/sentry.php b/config/sentry.php index 02a4ff296..7ae7ccfda 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.265', + 'release' => '4.0.0-beta.266', // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index 7ac4ffcba..7001afde8 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@