From 1e01106b945b2d4b8d98ba0024a3d602bdaff926 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 15 May 2024 11:53:28 +0200 Subject: [PATCH] chore: Remove unnecessary code for saving commit message --- app/Jobs/ApplicationDeploymentJob.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Jobs/ApplicationDeploymentJob.php b/app/Jobs/ApplicationDeploymentJob.php index 0d06aa174..38b57a9db 100644 --- a/app/Jobs/ApplicationDeploymentJob.php +++ b/app/Jobs/ApplicationDeploymentJob.php @@ -1179,7 +1179,6 @@ class ApplicationDeploymentJob implements ShouldQueue, ShouldBeEncrypted ] ); if ($this->saved_outputs->get('commit_message')) { - $this->application_deployment_queue->addLogEntry("Commit message: {$this->saved_outputs->get('commit_message')}"); $this->application_deployment_queue->commit_message = $this->saved_outputs->get('commit_message'); ApplicationDeploymentQueue::whereCommit($this->commit)->whereApplicationId($this->application->id)->update(['commit_message' => $this->saved_outputs->get('commit_message')]); $this->application_deployment_queue->save();