mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-27 03:46:03 -04:00
Wait longer before keymgr is done
To check if the key managing for a zone is done, we check a log message.
On some machines, with many zones this may take some time.
Increate the timeout to a minute. Note that most zones will continue
their test case much faster, but with many zones there may be some
straggling.
(cherry picked from commit ba211de912)
This commit is contained in:
parent
e865c22f10
commit
d1cd589f3a
1 changed files with 1 additions and 1 deletions
|
|
@ -1600,5 +1600,5 @@ def wait_keymgr_done(server: NamedInstance, zone: str, reconfig: bool = False) -
|
|||
if reconfig:
|
||||
messages.append("received control channel command 'reconfig'")
|
||||
messages.append(f"keymgr: {zone} done")
|
||||
with server.watch_log_from_start() as watcher:
|
||||
with server.watch_log_from_start(timeout=60) as watcher:
|
||||
watcher.wait_for_sequence(messages)
|
||||
|
|
|
|||
Loading…
Reference in a new issue