1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-12-22 02:14:26 +01:00

changed socketio async mode from None to 'threading'

in order to function correctly with python threads
This commit is contained in:
Thomas Schmid 2018-04-03 23:29:51 +02:00 committed by Ralf Ramsauer
parent 0ae60848cf
commit 6a018b7290

View File

@ -57,7 +57,7 @@ html_title = 'Binary Kitchen Doorlock (%s - v%s)' % (__status__, __version__)
webapp = Flask(__name__)
webapp.config.from_pyfile('config.cfg')
socketio = SocketIO(webapp, async_mode=None)
socketio = SocketIO(webapp, async_mode='threading')
Bootstrap(webapp)
serial_port = webapp.config.get('SERIAL_PORT')
simulate = webapp.config.get('SIMULATE')