Fix IOLoop reference
This commit is contained in:
parent
8303394ced
commit
187c83b6f7
1 changed files with 1 additions and 1 deletions
|
@ -460,7 +460,7 @@ class Application(tornado.web.Application):
|
|||
),
|
||||
]
|
||||
)
|
||||
tornado.ioloop.IOLoop.current().add_callback(self.async_init)
|
||||
IOLoop.current().add_callback(self.async_init)
|
||||
super().__init__(paths, **settings)
|
||||
|
||||
async def async_init(self):
|
||||
|
|
Loading…
Reference in a new issue