Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rbd-target-api: disable the built-in werkzeug debugger #121

Merged
merged 1 commit into from Sep 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
rbd-target-api: disable the built-in werkzeug debugger
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
  • Loading branch information
Jason Dillaman committed Sep 24, 2018
commit c3812075e30c76a800a961e7291087d357403f6b
3 changes: 2 additions & 1 deletion rbd-target-api.py
Expand Up @@ -2004,7 +2004,8 @@ def main():
# request makes further api requests
app.run(host='0.0.0.0',
port=settings.config.api_port,
debug=True,
debug=settings.config.debug,
use_evalex=False,
threaded=True,
use_reloader=False,
ssl_context=context)
Expand Down