zulip_botserver: Turn off Flask debug mode.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2024-02-21 15:07:03 -08:00
parent 176e5de694
commit 0715d1f46c

View file

@ -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__":