]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Increase the amount of time allowed for signing to occur in
authorMark Andrews <marka@isc.org>
Tue, 5 Jul 2022 03:05:58 +0000 (13:05 +1000)
committerMark Andrews <marka@isc.org>
Tue, 5 Jul 2022 13:12:22 +0000 (23:12 +1000)
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 4db847e80e796c43d80a23e1613c246a3586ceac)

bin/tests/system/cds/checktime.pl

index b7e5e5236a2d729db2592bc774c157cf2c7f6c9c..d85fd9125c47c8a9689a5b3c20bd90459a3ccddf 100644 (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;