0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Fix fetchstatus.py (again) to handle SITE_ROOT with a path

cc: 
This commit is contained in:
Pēteris Caune 2024-12-20 11:38:33 +02:00
parent 81869989fb
commit 2dd4994259
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
2 changed files with 14 additions and 3 deletions

View file

@ -1,6 +1,14 @@
# Changelog
All notable changes to this project will be documented in this file.
## v3.9 - 2024-12-20
### Improvements
- Change the default value of ALLOWED_HOSTS from "*" to the domain part of SITE_ROOT
### Bug Fixes
- Fix fetchstatus.py (again) to handle SITE_ROOT with a path (#1108)
## v3.8.2 - 2024-12-19
### Improvements

View file

@ -20,7 +20,8 @@ settings.py uses for reading SITE_ROOT:
from __future__ import annotations
import os
from urllib.request import urlopen
from urllib.parse import urlparse
from urllib.request import Request, urlopen
# Read SITE_ROOT from environment, same as settings.py would do:
SITE_ROOT = os.getenv("SITE_ROOT", "http://localhost:8000")
@ -30,8 +31,10 @@ if os.path.exists("hc/local_settings.py"):
SITE_ROOT = getattr(local_settings, "SITE_ROOT", SITE_ROOT)
SITE_ROOT = SITE_ROOT.removesuffix("/")
with urlopen(f"{SITE_ROOT}/api/v3/status/") as response:
parsed_site_root = urlparse(SITE_ROOT.removesuffix("/"))
url = f"http://localhost:8000{parsed_site_root.path}/api/v3/status/"
headers = {"Host": parsed_site_root.netloc}
with urlopen(Request(url, headers=headers)) as response:
assert response.status == 200
print("Status OK")