fix: disable Flask Werkzeug reloader to prevent CPU usage in debug mode

Co-authored-by: hlohaus <983577+hlohaus@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-13 18:04:22 +00:00
parent 05002cfccd
commit 270ba11c47
+2 -1
View File
@@ -37,7 +37,8 @@ def run_gui(host: str = '0.0.0.0', port: int = 8080, debug: bool = False) -> Non
config = {
'host' : host,
'port' : port,
'debug': debug
'debug': debug,
'use_reloader': False
}
app = get_gui_app()