summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-06-09 17:02:03 +0200
committerGitHub <noreply@github.com>2024-06-09 17:02:03 +0200
commitd296f1b1505887067a1d3bf5b05439e9adf8d703 (patch)
tree5e4b53713afc8e2ab3a8cbe56dd82cc6eebd38dc /src
parent723e2ab61480991ddd0892ab627fb7035c7e256d (diff)
parented291814eb8bd9dc81aff382f6507b7ee2838ef7 (diff)
downloadvyos-1x-d296f1b1505887067a1d3bf5b05439e9adf8d703.tar.gz
vyos-1x-d296f1b1505887067a1d3bf5b05439e9adf8d703.zip
Merge pull request #3605 from vyos/mergify/bp/sagitta/pr-3598
reverse-proxy: T6454: Set default value of http for haproxy mode (backport #3598)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/load-balancing_reverse-proxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/load-balancing_reverse-proxy.py b/src/conf_mode/load-balancing_reverse-proxy.py
index 09c68dadd..17226efe9 100755
--- a/src/conf_mode/load-balancing_reverse-proxy.py
+++ b/src/conf_mode/load-balancing_reverse-proxy.py
@@ -85,7 +85,7 @@ def verify(lb):
raise ConfigError(f'"expect status" and "expect string" can not be configured together!')
if 'health_check' in back_config:
- if 'mode' not in back_config or back_config['mode'] != 'tcp':
+ if back_config['mode'] != 'tcp':
raise ConfigError(f'backend "{back}" can only be configured with {back_config["health_check"]} ' +
f'health-check whilst in TCP mode!')
if 'http_check' in back_config:
@@ -108,7 +108,7 @@ def verify(lb):
# Check if http-response-headers are configured in any frontend/backend where mode != http
for group in ['service', 'backend']:
for config_name, config in lb[group].items():
- if 'http_response_headers' in config and ('mode' not in config or config['mode'] != 'http'):
+ if 'http_response_headers' in config and config['mode'] != 'http':
raise ConfigError(f'{group} {config_name} must be set to http mode to use http_response_headers!')
for front, front_config in lb['service'].items():