From 8738309e24bc6235982a76896b2902662a6f827a Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Tue, 22 Aug 2023 09:56:57 +0200 Subject: [PATCH] Drop the rndc "-t" option from shudown system test BIND 9.18 rndc does not know about the "-t" option, that results in an silent "invalid argument" error. The "-t" option originally came with 184eddb595b4ffd8957fda166e705818799691aa (a backport from the main branch). --- bin/tests/system/shutdown/tests_shutdown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/shutdown/tests_shutdown.py b/bin/tests/system/shutdown/tests_shutdown.py index 04dc81f68f..89cada2bb7 100755 --- a/bin/tests/system/shutdown/tests_shutdown.py +++ b/bin/tests/system/shutdown/tests_shutdown.py @@ -105,7 +105,7 @@ def do_work(named_proc, resolver, rndc_cmd, kill_method, n_workers, n_queries): else: # We attempt to send couple rndc commands while named is # being shutdown - futures[executor.submit(launch_rndc, ["-t", "5", "status"])] = "status" + futures[executor.submit(launch_rndc, ["status"])] = "status" ret_code = -1 for future in as_completed(futures):