mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04: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.
(cherry picked from commit 4db847e80e)
This commit is contained in:
parent
287241d449
commit
aedcc7c725
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue