Skip to content

Commit

Permalink
Merge pull request #117 from booxter/flask-disable-debug
Browse files Browse the repository at this point in the history
Don't run flask app with debug on
  • Loading branch information
booxter authored Jul 6, 2024
2 parents a530fe0 + 62d05c7 commit 5af6348
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/letsrolld/webapi/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ def _api():

def main():
_ = _api()
app.run(port=8000, debug=True)
# app.run(port=8000, debug=True)
app.run(port=8000, debug=False)


def swagger_json():
Expand Down

0 comments on commit 5af6348

Please sign in to comment.