From 4ae4e88800163cceabd8526dec2fbff00cdf5259 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 8 Apr 2024 13:04:38 +0200 Subject: [PATCH] Update instance update process --- app/Actions/Server/UpdateCoolify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Actions/Server/UpdateCoolify.php b/app/Actions/Server/UpdateCoolify.php index 6c01f75c9..c74072068 100644 --- a/app/Actions/Server/UpdateCoolify.php +++ b/app/Actions/Server/UpdateCoolify.php @@ -45,7 +45,6 @@ class UpdateCoolify } $this->update(); } - send_internal_notification("Instance updated from {$this->currentVersion} -> {$this->latestVersion}"); } catch (\Throwable $e) { ray('InstanceAutoUpdateJob failed'); ray($e->getMessage()); @@ -83,6 +82,7 @@ class UpdateCoolify "bash /data/coolify/source/upgrade.sh $this->latestVersion" ], $this->server); } + send_internal_notification("Instance updated from {$this->currentVersion} -> {$this->latestVersion}"); return; } }