mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-22 19:31:33 +00:00
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:
parent
de98ec3391
commit
e04cc08dd6
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user