From 6b82a9ef11e8b6d72a73d8921dc5459a99a91ebb Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 5 Jun 2023 12:19:31 +0200 Subject: [PATCH] fix --- app/Jobs/ProxyContainerStatusJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/ProxyContainerStatusJob.php b/app/Jobs/ProxyContainerStatusJob.php index b9341f275..9c3dcbfdc 100644 --- a/app/Jobs/ProxyContainerStatusJob.php +++ b/app/Jobs/ProxyContainerStatusJob.php @@ -37,7 +37,7 @@ class ProxyContainerStatusJob implements ShouldQueue, ShouldBeUnique public function handle(): void { try { - $container = get_container_status(server: $this->server, all_data: true, container_id: 'coolify-proxy', throwError: false); + $container = get_container_status(server: $this->server, all_data: true, container_id: 'coolify-proxy', throwError: true); $status = $container['State']['Status']; if ($this->server->extra_attributes->proxy_status !== $status) { $this->server->extra_attributes->proxy_status = $status;