Allow head requests for the health endpoint

This commit is contained in:
rkevin
2020-08-03 00:20:17 -07:00
parent 1f21f283df
commit 9b7a94046b

View File

@@ -658,6 +658,9 @@ class HealthCheckHandler(BaseHandler):
def get(self, *args):
self.finish()
def head(self, *args):
self.finish()
default_handlers = [
(r'/', RootHandler),