Fix dependency on auth_provider
This commit is contained in:
parent
76a8369434
commit
2f0dd4cf1c
1 changed files with 2 additions and 2 deletions
4
app.py
4
app.py
|
@ -68,7 +68,7 @@ class Oas3Handler(tornado.web.RequestHandler, metaclass=ABCMeta):
|
||||||
self.finish()
|
self.finish()
|
||||||
|
|
||||||
|
|
||||||
def make_app(_auth_provider=None):
|
def make_app():
|
||||||
version_path = r"/v[0-9]"
|
version_path = r"/v[0-9]"
|
||||||
return tornado.web.Application([
|
return tornado.web.Application([
|
||||||
(version_path + r"/health", HealthHandler),
|
(version_path + r"/health", HealthHandler),
|
||||||
|
@ -81,7 +81,7 @@ def main():
|
||||||
|
|
||||||
# Setup
|
# Setup
|
||||||
|
|
||||||
util.run_tornado_server(make_app(auth_provider),
|
util.run_tornado_server(make_app(),
|
||||||
server_port=port)
|
server_port=port)
|
||||||
|
|
||||||
# Teardown
|
# Teardown
|
||||||
|
|
Loading…
Reference in a new issue