From cb262a0121e23dd43005e6ee6495b8487c05abe1 Mon Sep 17 00:00:00 2001 From: Chris Parmer Date: Wed, 21 Jun 2017 13:38:12 -0400 Subject: [PATCH] Default to `debug=False` Require users to explicitly set `debug=True` so that they are better aware of the security implications --- dash/dash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dash/dash.py b/dash/dash.py index fe0abe7085..350e37dad4 100644 --- a/dash/dash.py +++ b/dash/dash.py @@ -603,7 +603,7 @@ def _setup_server(self): def run_server(self, port=8050, - debug=True, + debug=False, threaded=True, **flask_run_options): self.server.run(port=port, debug=debug, **flask_run_options)