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
1 changed files with 1 additions and 1 deletions

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')