From 6138ddcac637f98d172ce99675e390681c98d4ee Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sun, 24 Sep 2023 17:51:01 +0200 Subject: [PATCH] revert sending notification --- app/Jobs/ContainerStatusJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/ContainerStatusJob.php b/app/Jobs/ContainerStatusJob.php index 68f4269a6..1067d0028 100644 --- a/app/Jobs/ContainerStatusJob.php +++ b/app/Jobs/ContainerStatusJob.php @@ -258,7 +258,7 @@ public function handle(): void $this->server->team->notify(new ContainerStopped($containerName, $this->server, $url)); } } catch (\Throwable $e) { - // send_internal_notification('ContainerStatusJob failed with: ' . $e->getMessage()); + send_internal_notification('ContainerStatusJob failed with: ' . $e->getMessage()); ray($e->getMessage()); throw $e; }