Skip to content

Commit

Permalink
Fix Flask app is run in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
seokho-son authored Aug 19, 2024
1 parent aef942b commit 42fcb5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/usecases/ceph/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,4 @@ def get_public_ip():
if __name__ == "__main__":
pub_ip = get_public_ip()
print(f"Access the web app at: http://{pub_ip}:5000")
app.run(host="0.0.0.0", port=5000, debug=True)
app.run(host="0.0.0.0", port=5000, debug=False)

0 comments on commit 42fcb5b

Please sign in to comment.