Don't run the webserver in debug mode as it breaks the runtime.

This commit is contained in:
Dave Page 2015-01-20 13:51:20 +00:00
parent 0df7225561
commit dd40207617

View File

@ -37,7 +37,7 @@ else:
server_port = config.DEFAULT_SERVER_PORT
try:
app.run(port=server_port)
app.run(port=server_port, debug=False)
except IOError:
app.logger.error("Error starting the app server: %s", sys.exc_info())