4744. [bug] Suppress trust-anchor-telementry queries if

validation is disabled. [RT #46131]
This commit is contained in:
Mark Andrews 2017-09-29 09:33:06 +10:00
parent 83b5464a1f
commit dc0a792d94
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,6 @@
4744. [bug] Suppress trust-anchor-telementry queries if
validation is disabled. [RT #46131]
4743. [func] Exclude trust-anchor-telementry queries from
synth-from-dnssec processing. [RT #46123]

View file

@ -6551,12 +6551,16 @@ tat_timer_tick(isc_task_t *task, isc_event_t *event) {
view != NULL;
view = ISC_LIST_NEXT(view, link))
{
if (!view->trust_anchor_telemetry)
if (!view->trust_anchor_telemetry ||
!view->enablevalidation)
{
continue;
}
result = dns_view_getsecroots(view, &secroots);
if (result != ISC_R_SUCCESS)
if (result != ISC_R_SUCCESS) {
continue;
}
arg.view = view;
arg.task = task;