From: Peter van Dijk Date: Wed, 20 Jan 2021 11:56:33 +0000 (+0100) Subject: rename replication-cycle-interval to xfr-cycle-interval X-Git-Tag: dnsdist-1.6.0-rc1~32^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76f20540229a78e00fd40bd1f7184c42982a13bc;p=thirdparty%2Fpdns.git rename replication-cycle-interval to xfr-cycle-interval --- diff --git a/pdns/common_startup.cc b/pdns/common_startup.cc index b100469407..0453b83266 100644 --- a/pdns/common_startup.cc +++ b/pdns/common_startup.cc @@ -141,7 +141,7 @@ void declareArguments() ::arg().set("also-notify", "When notifying a domain, also notify these nameservers")=""; ::arg().set("allow-notify-from","Allow AXFR NOTIFY from these IP ranges. If empty, drop all incoming notifies.")="0.0.0.0/0,::/0"; ::arg().set("slave-cycle-interval","Schedule slave freshness checks once every .. seconds")="60"; - ::arg().set("replication-cycle-interval","Schedule primary/secondary replication freshness checks once every .. seconds")="60"; + ::arg().set("xfr-cycle-interval","Schedule primary/secondary SOA freshness checks once every .. seconds")="60"; ::arg().set("tcp-control-address","If set, PowerDNS can be controlled over TCP on this address")=""; ::arg().set("tcp-control-port","If set, PowerDNS can be controlled over TCP on this address")="53000"; diff --git a/pdns/communicator.cc b/pdns/communicator.cc index dda4909456..a674091f9a 100644 --- a/pdns/communicator.cc +++ b/pdns/communicator.cc @@ -114,7 +114,7 @@ void CommunicatorClass::mainloop() signal(SIGPIPE,SIG_IGN); g_log<