aboutsummaryrefslogtreecommitdiffstats
path: root/app/app/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/app/main.py')
-rwxr-xr-xapp/app/main.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/app/app/main.py b/app/app/main.py
index dd71ccf..c7adaaf 100755
--- a/app/app/main.py
+++ b/app/app/main.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# ============LICENSE_START=======================================================
-# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -17,16 +17,12 @@
# ============LICENSE_END=========================================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
-
-import connexion
from config_binding_service.logging import create_loggers
-
-# Entrypoint When in uwsgi
-# This create logger call used to be in the main block, but when moving to NGINX+uwsgi, this had to change. See https://hub.docker.com/r/tiangolo/uwsgi-nginx-flask/
-create_loggers()
-app = connexion.App(__name__, specification_dir='.')
-app.add_api('swagger.yaml', arguments={'title': 'Config Binding Service'})
+from config_binding_service import app
if __name__ == "__main__":
# Only for debugging while developing
app.run(host='0.0.0.0', port=10000, debug=True)
+else:
+ # Entrypoint in UWSGI
+ create_loggers()