Merge branch 'mnowak/shutdown-test-drop-t-option' into 'bind-9.18'

Drop the rndc "-t" option from shudown system test

See merge request isc-projects/bind9!8227
This commit is contained in:
Michal Nowak 2023-08-22 09:00:02 +00:00
commit 9424f5a5b1

View file

@ -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):