From b1baf7af3a9c90d7d939d0214df0556f0fea7b6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Mon, 18 Dec 2023 15:11:39 +0100 Subject: [PATCH] "trust-anchor-telemetry" is no longer experimental Remove the CFG_CLAUSEFLAG_EXPERIMENTAL flag from the "trust-anchor-telemetry" statement as the behavior of the latter has not been changed since its initial implementation and there are currently no plans to do so. This silences a relevant log message that was emitted even when the feature was explicitly disabled. --- doc/misc/options | 4 ++-- lib/isccfg/namedconf.c | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/misc/options b/doc/misc/options index 297822121a..ac5dd66794 100644 --- a/doc/misc/options +++ b/doc/misc/options @@ -295,7 +295,7 @@ options { transfers-in ; transfers-out ; transfers-per-ns ; - trust-anchor-telemetry ; // experimental + trust-anchor-telemetry ; try-tcp-refresh ; udp-receive-buffer ; udp-send-buffer ; @@ -569,7 +569,7 @@ view [ ] { transfer-format ( many-answers | one-answer ); transfer-source ( | * ); transfer-source-v6 ( | * ); - trust-anchor-telemetry ; // experimental + trust-anchor-telemetry ; trust-anchors { ( static-key | initial-key | static-ds | initial-ds ) ; ... }; // may occur multiple times trusted-keys { ; ... }; // may occur multiple times, deprecated try-tcp-refresh ; diff --git a/lib/isccfg/namedconf.c b/lib/isccfg/namedconf.c index 002d4d43a1..10aa92ee22 100644 --- a/lib/isccfg/namedconf.c +++ b/lib/isccfg/namedconf.c @@ -2158,8 +2158,7 @@ static cfg_clausedef_t view_clauses[] = { { "synth-from-dnssec", &cfg_type_boolean, 0 }, { "topology", NULL, CFG_CLAUSEFLAG_ANCIENT }, { "transfer-format", &cfg_type_transferformat, 0 }, - { "trust-anchor-telemetry", &cfg_type_boolean, - CFG_CLAUSEFLAG_EXPERIMENTAL }, + { "trust-anchor-telemetry", &cfg_type_boolean, 0 }, { "resolver-use-dns64", &cfg_type_boolean, 0 }, { "use-queryport-pool", NULL, CFG_CLAUSEFLAG_ANCIENT }, { "validate-except", &cfg_type_namelist, 0 },