mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-10 21:03:01 +00:00
Fix: Suppress Werkzeug production warning in web interface (#117)
- Add allow_unsafe_werkzeug=True parameter to socketio.run() - Allows web UI to run cleanly when eventlet is not available - Falls back gracefully to Werkzeug without production warnings
This commit is contained in:
@@ -1706,5 +1706,6 @@ if __name__ == '__main__':
|
||||
host='0.0.0.0',
|
||||
port=5001,
|
||||
debug=False,
|
||||
use_reloader=False
|
||||
use_reloader=False,
|
||||
allow_unsafe_werkzeug=True
|
||||
)
|
||||
Reference in New Issue
Block a user