Skip to content

Commit

Permalink
fix: Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro-Meireles committed Apr 1, 2024
1 parent 15a9fde commit c78e964
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions apip/middlewares/subdomain_mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@


def is_health_check_endpoint(request: Request):
print(request.path)
return bool(request.path == f"/{settings.HEALTH_CHECK_ENDPOINT}")


Expand All @@ -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"):
Expand Down

0 comments on commit c78e964

Please sign in to comment.