Remove unnecessary autoreload

As running the project outside a Docker container has become unfeasible,
having this feature doesn't make sense anymore.
This commit is contained in:
Bálint Bokros 2018-02-12 11:09:28 +01:00
parent de98ec3391
commit e04cc08dd6

View File

@ -9,8 +9,7 @@ class TFWServer:
def __init__(self, fsm_type):
self._fsm = fsm_type()
self.application = Application(
[(r'/ws', FSMManagingSocketHandler, {'fsm': self.fsm})],
autoreload=True
[(r'/ws', FSMManagingSocketHandler, {'fsm': self.fsm})]
)
self.controller_connector = ControllerConnector()
self.controller_connector.register_callback(self.zmq_callback)