diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-05 08:34:03 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-08-07 11:47:03 +0000 |
commit | 23af8071752cc4cebe59104ad9ba7d59dbb3c5fe (patch) | |
tree | 5a53b6e3e7fb5e5631576f04ae7a742459427f5c | |
parent | c832da363ffb5538806b5025b92107a60152e44c (diff) | |
download | vyos-1x-mergify/bp/sagitta/pr-3790.tar.gz vyos-1x-mergify/bp/sagitta/pr-3790.zip |
smoketest: T6539: remove explicit test for non existing global log entrymergify/bp/sagitta/pr-3790
Commit dd5908eac ("T6539: add logging options to load-balancer reverse-proxy")
added CLI commands to add custom log entries for frontend and backend servers
as well as a global log directive.
Remove explicit test code for no longer always present "global log" directive.
(cherry picked from commit b71481f7de93d43ff7208ff76cbc6b829b8951b2)
-rwxr-xr-x | smoketest/scripts/cli/test_load-balancing_reverse-proxy.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py b/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py index db43a78ec..34f77b95d 100755 --- a/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py +++ b/smoketest/scripts/cli/test_load-balancing_reverse-proxy.py @@ -465,8 +465,6 @@ class TestLoadBalancingReverseProxy(VyOSUnitTestSHIM.TestCase): # Ensure default logging configuration is present config = read_file(HAPROXY_CONF) - self.assertIn('log /dev/log local0', config) - self.assertIn('log /dev/log local1 notice', config) # Test global-parameters logging options self.cli_set(base_path + ['global-parameters', 'logging', 'facility', 'local1', 'level', 'err']) |