From 887a96dd359ace2b5da0a3c0789ce86aed348df6 Mon Sep 17 00:00:00 2001 From: Darren Sisson Date: Mon, 31 Mar 2025 10:44:29 +0100 Subject: [PATCH] removed start interval as it is not a valid option and is not defined in coolify --- app/Models/Application.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/Models/Application.php b/app/Models/Application.php index 57a69423d..d07577cc7 100644 --- a/app/Models/Application.php +++ b/app/Models/Application.php @@ -1530,7 +1530,6 @@ class Application extends BaseModel $interval = str($healthcheckCommand)->match('/--interval=([0-9]+[a-zµ]*)/'); $timeout = str($healthcheckCommand)->match('/--timeout=([0-9]+[a-zµ]*)/'); $start_period = str($healthcheckCommand)->match('/--start-period=([0-9]+[a-zµ]*)/'); - $start_interval = str($healthcheckCommand)->match('/--start-interval=([0-9]+[a-zµ]*)/'); $retries = str($healthcheckCommand)->match('/--retries=(\d+)/'); if ($interval->isNotEmpty()) { @@ -1542,13 +1541,10 @@ class Application extends BaseModel if ($start_period->isNotEmpty()) { $this->health_check_start_period = parseDockerfileInterval($start_period); } - if ($start_interval->isNotEmpty()) { - $this->health_check_start_interval = parseDockerfileInterval($start_interval); - } if ($retries->isNotEmpty()) { $this->health_check_retries = $retries->toInteger(); } - if ($interval || $timeout || $start_period || $start_interval || $retries) { + if ($interval || $timeout || $start_period || $retries) { $this->custom_healthcheck_found = true; $this->save(); }