2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Increase the amount of time allowed for signing to occur in

On slow systems we have seen this take 9 seconds.  Increased the
allowance from 3 seconds to 10 seconds to reduce the probabilty of
a false negative from the system test.
This commit is contained in:
Mark Andrews 2022-07-05 13:05:58 +10:00
parent 304d33fb32
commit 4db847e80e

View File

@ -24,4 +24,4 @@ while (<>) {
die "missing notbefore time" unless $notbefore;
die "missing inception time" unless $inception;
my $delta = $inception - $notbefore;
die "bad inception time $delta" unless abs($delta - $target) <= 3;
die "bad inception time $delta" unless abs($delta - $target) <= 10;