From 58be59a7b3d712550ae2a5054c3bde2aeca4d147 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 29 May 2025 11:11:49 +0200 Subject: [PATCH] refactor(service): remove informational dispatch during service stop for cleaner execution --- app/Livewire/Project/Service/Heading.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Livewire/Project/Service/Heading.php b/app/Livewire/Project/Service/Heading.php index 153b10fc8..eb7f469a8 100644 --- a/app/Livewire/Project/Service/Heading.php +++ b/app/Livewire/Project/Service/Heading.php @@ -121,7 +121,6 @@ public function forceDeploy() public function stop() { try { - $this->dispatch('info', 'Gracefully stopping service, it could take a while depending on the service.'); StopService::dispatch($this->service, false, $this->docker_cleanup); } catch (\Exception $e) { $this->dispatch('error', $e->getMessage());