From 8882d887314970d144fb7c7c02344e70a7c22202 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. (cherry picked from commit b1baf7af3a9c90d7d939d0214df0556f0fea7b6b) --- 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 a91670154c..da2847708f 100644 --- a/doc/misc/options +++ b/doc/misc/options @@ -305,7 +305,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 ; @@ -582,7 +582,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 5a8ccb2c34..d5b28baad2 100644 --- a/lib/isccfg/namedconf.c +++ b/lib/isccfg/namedconf.c @@ -2163,8 +2163,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 }, { "use-queryport-pool", NULL, CFG_CLAUSEFLAG_ANCIENT }, { "validate-except", &cfg_type_namelist, 0 }, { "v6-bias", &cfg_type_uint32, 0 },