agent: Fix typo in HTTPFinger

This commit is contained in:
Mike Salvatore 2021-03-09 11:56:06 -05:00
parent efedab8854
commit ba6bf71776
1 changed files with 1 additions and 1 deletions

View File

@ -45,6 +45,6 @@ class HTTPFinger(HostFinger):
except Timeout:
LOG.debug(f"Timout while requesting headers from {url}")
except ConnectionError: # Someone doesn't like us
LOG.debug(f"ConnetionError while requesting headers from {url}")
LOG.debug(f"Connection error while requesting headers from {url}")
return True