diff --git a/app/Console/Commands/Init.php b/app/Console/Commands/Init.php index 315f256c0..c69d411dd 100644 --- a/app/Console/Commands/Init.php +++ b/app/Console/Commands/Init.php @@ -125,6 +125,9 @@ private function cleanup_in_progress_application_deployments() // Cleanup any failed deployments try { + if (isCloud()) { + return; + } $queued_inprogress_deployments = ApplicationDeploymentQueue::whereIn('status', [ApplicationDeploymentStatus::IN_PROGRESS->value, ApplicationDeploymentStatus::QUEUED->value])->get(); foreach ($queued_inprogress_deployments as $deployment) { ray($deployment->id, $deployment->status); diff --git a/config/sentry.php b/config/sentry.php index 071a24929..a67eea44e 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ // 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.216', + 'release' => '4.0.0-beta.217', // 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 e1bf71945..d13c0ce6f 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@