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
184eddb595 (a backport from the main
branch).
This commit is contained in:
Michal Nowak 2023-08-22 09:56:57 +02:00
parent 3ac53b39f2
commit 8738309e24
No known key found for this signature in database

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