]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
auth: enable zone cache by default
authorPeter van Dijk <peter.van.dijk@powerdns.com>
Wed, 26 May 2021 10:50:14 +0000 (12:50 +0200)
committermind04 <mind04@monshouwer.org>
Mon, 31 May 2021 11:05:25 +0000 (13:05 +0200)
docs/upgrading.rst
pdns/common_startup.cc

index 38f290762a396fd51b3a15ebb83377289018b8be..3055cb555bfc67416be7c9a996dfcac5c29047e5 100644 (file)
@@ -54,6 +54,10 @@ Removed options
 ~~~~~~~~~~~~~~~
 - :ref:`setting-local-ipv6` has been removed. IPv4 and IPv6 listen addresses should now be set with :ref:`setting-local-address`.
 
+Starting with auth-4.5.0-alpha2:
+
+- The default value of the ``zone-cache-refresh-interval`` option has been changed from ``0`` to ``300``.
+
 4.3.x to 4.4.0
 --------------
 
index c3405964924dc447518d48bfeab343327f2eb4b2..f91b80c4fb8c6f1c6295c6b7c0a902ac95a47185 100644 (file)
@@ -181,7 +181,7 @@ void declareArguments()
   ::arg().set("cache-ttl","Seconds to store packets in the PacketCache")="20";
   ::arg().set("negquery-cache-ttl","Seconds to store negative query results in the QueryCache")="60";
   ::arg().set("query-cache-ttl","Seconds to store query results in the QueryCache")="20";
-  ::arg().set("zone-cache-refresh-interval", "Seconds to cache list of known zones") = "0";
+  ::arg().set("zone-cache-refresh-interval", "Seconds to cache list of known zones") = "300";
   ::arg().set("server-id", "Returned when queried for 'id.server' TXT or NSID, defaults to hostname - disabled or custom")="";
   ::arg().set("default-soa-content","Default SOA content")="a.misconfigured.dns.server.invalid hostmaster.@ 0 10800 3600 604800 3600";
   ::arg().set("default-soa-edit","Default SOA-EDIT value")="";