Skip to content

Commit 0715d1f

Browse files
committed
zulip_botserver: Turn off Flask debug mode.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent 176e5de commit 0715d1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zulip_botserver/zulip_botserver/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def main() -> None:
254254
app.config["BOTS_LIB_MODULES"] = bots_lib_modules
255255
app.config["BOT_HANDLERS"] = bot_handlers
256256
app.config["MESSAGE_HANDLERS"] = message_handlers
257-
app.run(host=options.hostname, port=int(options.port), debug=True)
257+
app.run(host=options.hostname, port=int(options.port))
258258

259259

260260
if __name__ == "__main__":

0 commit comments

Comments
 (0)