]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
Fix outdated documentation: files-watchdog -> watchdog docs-doc-watchdog-n6oce6/deployments/8751
authoroldshensheep <oldshensheep@gmail.com>
Thu, 19 Mar 2026 11:35:06 +0000 (11:35 +0000)
committeroldshensheep <oldshensheep@gmail.com>
Thu, 19 Mar 2026 11:35:06 +0000 (11:35 +0000)
doc/user/config-network-server-tls.rst
python/knot_resolver/datamodel/network_schema.py

index 98bff10a10c4a6bae33e728eff6aae7ad057ccbd..8f395d416472132ee6d995672409673945140d39 100644 (file)
@@ -123,7 +123,7 @@ policies.
 
    .. option:: key-file: <path>
 
-   .. option:: files-watchdog: auto|true|false
+   .. option:: watchdog: auto|true|false
 
       :default: auto
 
index 4b957335f48f88f66b7c9516eba09526fc74271e..6f84544ee9c878f139409424eb38af2da6de6f29 100644 (file)
@@ -107,7 +107,7 @@ class TLSSchema(ConfigSchema):
             raise ValueError("'cert-file' and 'key-file' must be configured together")
         if self.cert_file and self.key_file and self.watchdog and not WATCHDOG_LIB:
             raise ValueError(
-                "'files-watchdog' is enabled, but the required 'watchdog' dependency (optional) is not installed"
+                "'watchdog' is enabled, but the required 'watchdog' dependency (optional) is not installed"
             )