Skip to content

Commit

Permalink
zulip_botserver: Turn off Flask debug mode.
Browse files Browse the repository at this point in the history
Signed-off-by: Anders Kaseorg <anders@zulip.com>
  • Loading branch information
andersk committed Feb 21, 2024
1 parent 176e5de commit 0715d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zulip_botserver/zulip_botserver/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def main() -> None:
app.config["BOTS_LIB_MODULES"] = bots_lib_modules
app.config["BOT_HANDLERS"] = bot_handlers
app.config["MESSAGE_HANDLERS"] = message_handlers
app.run(host=options.hostname, port=int(options.port), debug=True)
app.run(host=options.hostname, port=int(options.port))


if __name__ == "__main__":
Expand Down

0 comments on commit 0715d1f

Please sign in to comment.