bump tornado and others, use new function

This commit is contained in:
Taro Matsuzawa 2019-08-24 06:56:04 +09:00
parent 5c4ac8d888
commit 0b34d29a18
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
mercantile==1.0.4 mercantile==1.0.4
psycopg2-binary==2.7.7 psycopg2-binary==2.8.3
pyproj==1.9.6 pyproj==2.2.1
PyYAML==3.13 PyYAML==3.13
SQLAlchemy==1.2.18 SQLAlchemy==1.3.7
tornado==5.1.1 tornado==6.0.3

View File

@ -97,6 +97,6 @@ def m():
application = tornado.web.Application([(r"/tiles/([0-9]+)/([0-9]+)/([0-9]+).pbf", GetTile)]) application = tornado.web.Application([(r"/tiles/([0-9]+)/([0-9]+)/([0-9]+).pbf", GetTile)])
print("Postserve started..") print("Postserve started..")
application.listen(8080) application.listen(8080)
tornado.ioloop.IOLoop.instance().start() tornado.ioloop.IOLoop.current().start()
m() m()