From 28279bade03881a014ff978d9619b87ae2fe9b34 Mon Sep 17 00:00:00 2001 From: Will Russell Date: Tue, 4 Aug 2026 12:19:24 -0400 Subject: [PATCH] patch update for OCPBUGS-98255 to permit 403 response --- images/router/haproxy/reload-haproxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/router/haproxy/reload-haproxy b/images/router/haproxy/reload-haproxy index e0733ec21..30974e3b5 100755 --- a/images/router/haproxy/reload-haproxy +++ b/images/router/haproxy/reload-haproxy @@ -36,7 +36,7 @@ function haproxyHealthCheck() { while true; do local httpcode=$(curl $timeout_opts $proxy_opts -s -o /dev/null -I -H "Host: " -w "%{http_code}" ${url}) - if [[ "$httpcode" = 503 || "$httpcode" = 404 ]]; then + if [[ "$httpcode" = 503 || "$httpcode" = 404 || "$httpcode" = 403 ]]; then echo " - Health check ok : $retries retry attempt(s)." return 0 fi