fix(cert_manager): typo in valid_host

This commit is contained in:
2026-06-03 00:00:48 +02:00
parent 48b52f9fea
commit cc3bd48ddf
+1 -1
View File
@@ -192,7 +192,7 @@ class CertManager:
_: ssl.SSLSocket,
/,
) -> None | int:
if host is None or is_valid_host(host):
if host is None or not valid_host(host):
return None
self.logger.debug("servername callback: %s", host)
if not self.exists(host) and not self.create_or_update(host):