diff --git a/apip/middlewares/subdomain_mock.py b/apip/middlewares/subdomain_mock.py index 00674af..8883f76 100644 --- a/apip/middlewares/subdomain_mock.py +++ b/apip/middlewares/subdomain_mock.py @@ -10,7 +10,6 @@ def is_health_check_endpoint(request: Request): - print(request.path) return bool(request.path == f"/{settings.HEALTH_CHECK_ENDPOINT}") @@ -20,7 +19,6 @@ def get_request_subdomain(request: Request) -> str: host: str = request.get_host() - print(host) host_parts = request.get_host().split(".") if host.startswith("127.0.0.1"):