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:
parent
304d33fb32
commit
4db847e80e
@ -24,4 +24,4 @@ while (<>) {
|
|||||||
die "missing notbefore time" unless $notbefore;
|
die "missing notbefore time" unless $notbefore;
|
||||||
die "missing inception time" unless $inception;
|
die "missing inception time" unless $inception;
|
||||||
my $delta = $inception - $notbefore;
|
my $delta = $inception - $notbefore;
|
||||||
die "bad inception time $delta" unless abs($delta - $target) <= 3;
|
die "bad inception time $delta" unless abs($delta - $target) <= 10;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user