From 443882592ea17aca0659dc4a6c7749a7373ff7e1 Mon Sep 17 00:00:00 2001 From: James Muscat Date: Wed, 1 Jul 2015 23:23:47 +0100 Subject: [PATCH] Back out wsgi entry point since it breaks things in complicated ways. --- src/eddn/Gateway.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/eddn/Gateway.py b/src/eddn/Gateway.py index 5d79d77..5534aeb 100644 --- a/src/eddn/Gateway.py +++ b/src/eddn/Gateway.py @@ -21,7 +21,7 @@ from eddn.core.Validator import Validator, ValidationSeverity from gevent import monkey monkey.patch_all() -from bottle import default_app, run, request, response, get, post +from bottle import run, request, response, get, post logger = logging.getLogger(__name__) @@ -211,12 +211,10 @@ class MalformedUploadError(Exception): def main(): + loadConfig() + configure() run(host='0.0.0.0', port=Settings.GATEWAY_HTTP_PORT, server='gevent') -loadConfig() -configure() if __name__ == '__main__': main() -else: - application = app = default_app()