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 e1962ea commit 821b63aCopy full SHA for 821b63a
platform/services/installer/app/checks/internet.py
@@ -26,7 +26,7 @@ def check_internet_connection(config: InstallationConfig | UninstallationConfig
26
try:
27
logger.info("Checking Internet access.")
28
logger.debug("Sending request to http://ghcr.io...")
29
- requests.head("http://ghcr.io", allow_redirects=True, timeout=10).raise_for_status()
+ requests.head("http://ghcr.io", allow_redirects=False, timeout=10).raise_for_status()
30
logger.debug("Internet is accessible.")
31
except requests.RequestException as error:
32
logger.debug("Internet is not accessible.")
0 commit comments