From fc1cc74059e51a0317a678026d8f170d4c12bded Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Thu, 5 Feb 2026 13:01:41 +0100 Subject: [PATCH] VR: fix haproxy check when ssl offloading is configured --- systemvm/debian/root/health_checks/haproxy_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemvm/debian/root/health_checks/haproxy_check.py b/systemvm/debian/root/health_checks/haproxy_check.py index c1db51e440c2..497cc04100e4 100644 --- a/systemvm/debian/root/health_checks/haproxy_check.py +++ b/systemvm/debian/root/health_checks/haproxy_check.py @@ -50,7 +50,7 @@ def checkLoadBalance(haproxyData, haCfgSections): correct = False bindStr = lbSec["sourceIp"] + ":" + formatPort(lbSec["sourcePortStart"], lbSec["sourcePortEnd"]) - if cfgSection["bind"][0] != bindStr: + if not cfgSection["bind"][0].startswith(bindStr): print("Incorrect bind string found. Expected " + bindStr + " but found " + cfgSection["bind"][0] + ".") correct = False