From 2694863d072efcae864cbdc01021998ac7fb24b0 Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Fri, 8 May 2026 23:08:30 -0400 Subject: [PATCH] Fix health check URL to use production custom domain Jenkins agent cannot resolve linuxpcl.azurewebsites.net due to DNS restrictions on the build machine. Co-Authored-By: Claude Sonnet 4.6 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 15a16f9..cda94a4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -83,7 +83,7 @@ pipeline { stage('Health Check') { steps { powershell ''' - $url = "https://linuxpcl.azurewebsites.net/" + $url = "https://app.powdercoatinglogix.com/" $timeout = 180 $elapsed = 0 Write-Host "Polling $url for up to $timeout seconds..."