Skip to content

Commit

Permalink
refactor(api): disable health check request logging
Browse files Browse the repository at this point in the history
  • Loading branch information
haatveit committed Feb 20, 2025
1 parent a550681 commit 57be1cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tsdfileapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2638,6 +2638,10 @@ def get(self, tenant: str) -> None:
self.set_status(HTTPStatus.OK.value)
self.write({"message": "healthy"})

def _log(self) -> None:
# disable logging for health check requests
pass


class NaclKeyHander(RequestHandler):
def get(self, tenant: str) -> None:
Expand Down

0 comments on commit 57be1cf

Please sign in to comment.