mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
"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 b1baf7af3a)
This commit is contained in:
parent
8f9c0eb284
commit
8882d88731
2 changed files with 3 additions and 4 deletions
|
|
@ -305,7 +305,7 @@ options {
|
|||
transfers-in <integer>;
|
||||
transfers-out <integer>;
|
||||
transfers-per-ns <integer>;
|
||||
trust-anchor-telemetry <boolean>; // experimental
|
||||
trust-anchor-telemetry <boolean>;
|
||||
try-tcp-refresh <boolean>;
|
||||
udp-receive-buffer <integer>;
|
||||
udp-send-buffer <integer>;
|
||||
|
|
@ -582,7 +582,7 @@ view <string> [ <class> ] {
|
|||
transfer-format ( many-answers | one-answer );
|
||||
transfer-source ( <ipv4_address> | * ) ;
|
||||
transfer-source-v6 ( <ipv6_address> | * ) ;
|
||||
trust-anchor-telemetry <boolean>; // experimental
|
||||
trust-anchor-telemetry <boolean>;
|
||||
trust-anchors { <string> ( static-key | initial-key | static-ds | initial-ds ) <integer> <integer> <integer> <quoted_string>; ... }; // may occur multiple times
|
||||
trusted-keys { <string> <integer> <integer> <integer> <quoted_string>; ... }; // may occur multiple times, deprecated
|
||||
try-tcp-refresh <boolean>;
|
||||
|
|
|
|||
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Reference in a new issue