Skip to content

Commit

Permalink
Extended debugging in the REST client module
Browse files Browse the repository at this point in the history
  • Loading branch information
iagaponenko committed Aug 2, 2024
1 parent a142b3c commit b879f7e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rootfs/ingest/python/qserv/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ def __init__(

def is_reachable(self, url: str) -> bool:
"""Check if a given http URL is reachable through the network."""
_LOG.debug("Checking if %s is reachable", url)
try:
self.http.head(url)
except requests.exceptions.ConnectionError as e:
Expand Down

0 comments on commit b879f7e

Please sign in to comment.