]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Fix two documentation nits 16909/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Thu, 19 Feb 2026 14:08:36 +0000 (15:08 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Thu, 19 Feb 2026 14:08:36 +0000 (15:08 +0100)
Signed-off-by: Remi Gacogne <remi.gacogne@powerdns.com>
pdns/dnsdistdist/dnsdist-actions-definitions.yml
pdns/dnsdistdist/docs/reference/dnsname.rst

index a57fc258c21931b747b4156c49b93a7f1d4d3556..74ef90538089aeacea69b8ff1b771d568a0a8141 100644 (file)
@@ -420,9 +420,7 @@ are processed after this action"
     - name: remote_loggers
       type: "Vec<String>"
       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"
index f2f0e299ffca4e36697f72bb6b4dabab49d1faeb..84ca5d29fd1b1850c3972662b332043bd5eab6ff 100644 (file)
@@ -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")