Fix monasca-forwarder never able to start

This issue is caused by a incompatible version of tornado framework in
stable/pike, because the ioloop.PeriodicCallback argument on init was
removed on a newer version of tornado.

We just need to pin the version of tornado framework used by
the forwarder.

Task: 6211
Story: 2001489
Change-Id: Ic7cf0e11303b17582fa2fb1997539051c0519107
This commit is contained in:
kaiokassiano 2018-01-22 11:20:06 -03:00
parent 1b2edfa4ec
commit b11d5abae9
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ redis>=2.10.0 # MIT
six>=1.9.0 # MIT
supervisor>=3.1.3,<3.4
stevedore>=1.20.0 # Apache-2.0
tornado>=4.3
tornado>=4.3,<=4.5.2
futures>=3.0;python_version=='2.7' or python_version=='2.6' # BSD
# NOTE(sdague): before allowing in >= 0.21 please be sure
# https://github.com/eventlet/eventlet/issues/401 is resolved