From 32292ea7fd812039c9270d46e5f0220cfa38844a Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Mon, 12 May 2025 15:14:58 +0200 Subject: [PATCH] dnsdist: Fix unused configuration parameters in health-checks tests --- regression-tests.dnsdist/test_HealthChecks.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/regression-tests.dnsdist/test_HealthChecks.py b/regression-tests.dnsdist/test_HealthChecks.py index ab2fbea5e8..9c7f9579f6 100644 --- a/regression-tests.dnsdist/test_HealthChecks.py +++ b/regression-tests.dnsdist/test_HealthChecks.py @@ -9,11 +9,7 @@ from dnsdisttests import DNSDistTest, pickAvailablePort class HealthCheckTest(DNSDistTest): _consoleKey = DNSDistTest.generateConsoleKey() _consoleKeyB64 = base64.b64encode(_consoleKey).decode('ascii') - _webTimeout = 2.0 - _webServerPort = pickAvailablePort() - _webServerAPIKey = 'apisecret' - _webServerAPIKeyHashed = '$scrypt$ln=10,p=1,r=8$9v8JxDfzQVyTpBkTbkUqYg==$bDQzAOHeK1G9UvTPypNhrX48w974ZXbFPtRKS34+aso=' - _config_params = ['_consoleKeyB64', '_consolePort', '_webServerPort', '_webServerAPIKeyHashed', '_testServerPort'] + _config_params = ['_consoleKeyB64', '_consolePort', '_testServerPort'] _config_template = """ setKey("%s") controlSocket("127.0.0.1:%d") -- 2.47.2