mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 12:50:00 -04:00
doth system test: increase transfers-in/out limits
Sometimes doth test could intermittently fail shortly after start due to inability to complete a zone transfer in time. As it turned out, it could happen due to transfers-in/out limits. Initially the defaults were fine, but over time, especially when adding Strict/Mutual TLS, we added more than 10 zones so it became possible to hit the limits. This commit takes care of that by bumping the limits.
This commit is contained in:
parent
354494cd10
commit
95a551de7b
2 changed files with 4 additions and 0 deletions
|
|
@ -95,6 +95,8 @@ options {
|
|||
statistics-file "named.stats";
|
||||
dnssec-validation yes;
|
||||
tcp-initial-timeout 1200;
|
||||
transfers-in 100;
|
||||
transfers-out 100;
|
||||
};
|
||||
|
||||
zone "." {
|
||||
|
|
|
|||
|
|
@ -49,6 +49,8 @@ options {
|
|||
ixfr-from-differences yes;
|
||||
check-integrity no;
|
||||
dnssec-validation yes;
|
||||
transfers-in 100;
|
||||
transfers-out 100;
|
||||
};
|
||||
|
||||
zone "." {
|
||||
|
|
|
|||
Loading…
Reference in a new issue