From f50c483c6471309575a7a4c1bd355cb2942bd8da Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 28 May 2024 14:44:03 +0200 Subject: [PATCH] fix: sync upgrade process --- app/Livewire/Upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Upgrade.php b/app/Livewire/Upgrade.php index 5ef966f43..9dc51ccb3 100644 --- a/app/Livewire/Upgrade.php +++ b/app/Livewire/Upgrade.php @@ -33,7 +33,7 @@ class Upgrade extends Component } $this->rateLimit(1, 60); $this->updateInProgress = true; - UpdateCoolify::run(force: true, async: true); + UpdateCoolify::run(force: true, async: false); } catch (\Throwable $e) { return handleError($e, $this); }