Skip to content

Commit

Permalink
Hotfix: disable server debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
justinh-rahb authored Sep 10, 2023
1 parent 5ab5373 commit f433937
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from main import process_event

LOG_FILE = get_env("LOG_FILE")
DEBUG = get_env("DEBUG")
HOST = get_env("HOST")
PORT = get_env("PORT")

Expand Down Expand Up @@ -44,4 +43,4 @@ def google_chat_event():
return jsonify({"error": str(e)}), 500

if __name__ == "__main__":
app.run(host=HOST, port=PORT, debug=DEBUG)
app.run(host=HOST, port=PORT)

0 comments on commit f433937

Please sign in to comment.