Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
URenko authored Jul 16, 2024
1 parent 7988c0f commit f282a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accesser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ async def handle(reader, writer):
cert_verify_list = [host]
cert_policy = setting.config['check_hostname']
if cert_policy is not False and not any(match_hostname(cert, h, cert_policy) for h in cert_verify_list):
logger.warning(f"[{i_port:5}] {cert_verify_list} don't march either of {cert_message}.")
logger.warning(f"[{i_port:5}] {cert_verify_list} don't match either of {cert_message}.")
return
await asyncio.gather(
forward_stream(reader, remote_writer),
Expand Down

0 comments on commit f282a12

Please sign in to comment.