From: Remi Gacogne Date: Thu, 19 Feb 2026 14:08:36 +0000 (+0100) Subject: dnsdist: Fix two documentation nits X-Git-Tag: dnsdist-2.1.0-beta1~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f2baefcfc09afffb2381a018b335c2f565636dc;p=thirdparty%2Fpdns.git dnsdist: Fix two documentation nits Signed-off-by: Remi Gacogne --- diff --git a/pdns/dnsdistdist/dnsdist-actions-definitions.yml b/pdns/dnsdistdist/dnsdist-actions-definitions.yml index a57fc258c2..74ef905380 100644 --- a/pdns/dnsdistdist/dnsdist-actions-definitions.yml +++ b/pdns/dnsdistdist/dnsdist-actions-definitions.yml @@ -420,9 +420,7 @@ are processed after this action" - name: remote_loggers type: "Vec" default: "" - description: | - The names of all the loggers that should be sent the protobuf messages that includes the tracing information. - This message will be sent once dnsdist is finished with the DNS transaction (i.e. the response has been sent, the query was dropped, or when a timeout occured). + description: "The names of all the loggers that should be sent the protobuf messages that includes the tracing information. This message will be sent once dnsdist is finished with the DNS transaction (i.e. the response has been sent, the query was dropped, or when a timeout occured)." - name: "use_incoming_traceid" type: "bool" default: "false" diff --git a/pdns/dnsdistdist/docs/reference/dnsname.rst b/pdns/dnsdistdist/docs/reference/dnsname.rst index f2f0e299ff..84ca5d29fd 100644 --- a/pdns/dnsdistdist/docs/reference/dnsname.rst +++ b/pdns/dnsdistdist/docs/reference/dnsname.rst @@ -86,7 +86,8 @@ Functions and methods of a ``DNSName`` Append ``labels`` to the DNSName. ``labels`` can be a string or DNSName containing one or more labels. - .. codeblock:: lua + .. code-block:: lua + local n = newDNSName("example.com") n:append("example") -- n is now "example.com.example" local other_name = newDNSName("foobar.invalid")