We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0135f97 commit f3c019cCopy full SHA for f3c019c
1 file changed
bugzilla/_backendbase.py
@@ -22,7 +22,7 @@ def __init__(self, url, bugzillasession):
22
@staticmethod
23
def probe(url):
24
try:
25
- requests.head(url).raise_for_status()
+ requests.head(url, timeout=10).raise_for_status()
26
return True # pragma: no cover
27
except Exception as e:
28
log.debug("Failed to probe url=%s : %s", url, str(e))
0 commit comments