Skip to content

Commit

Permalink
Don't run flask app with debug on
Browse files Browse the repository at this point in the history
  • Loading branch information
booxter committed Jul 6, 2024
1 parent a530fe0 commit 62d05c7
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 62d05c7

Please sign in to comment.