summaryrefslogtreecommitdiffstats
path: root/components/pm-subscription-handler/pmsh_service/mod
diff options
context:
space:
mode:
authorefiacor <fiachra.corcoran@est.tech>2020-02-12 23:31:16 +0000
committerefiacor <fiachra.corcoran@est.tech>2020-02-13 13:27:07 +0000
commitbc9f41ed3e67ed0350951de62331b3cd87c6aa78 (patch)
tree2d98fec426d48a3fd2bed9d01db2c9b2d50ae1ad /components/pm-subscription-handler/pmsh_service/mod
parent296f6a9817c28d9453fe697ae3dae6af37610eec (diff)
Fix PMHS logs dir setup
# Refactoring test|prod init Signed-off-by: efiacor <fiachra.corcoran@est.tech> Change-Id: Ib073cb762a7750fca7bdf415cf5080d04f7bda51 Issue-ID: DCAEGEN2-2078
Diffstat (limited to 'components/pm-subscription-handler/pmsh_service/mod')
-rw-r--r--components/pm-subscription-handler/pmsh_service/mod/__init__.py14
1 files changed, 1 insertions, 13 deletions
diff --git a/components/pm-subscription-handler/pmsh_service/mod/__init__.py b/components/pm-subscription-handler/pmsh_service/mod/__init__.py
index f8b1c598..722188ae 100644
--- a/components/pm-subscription-handler/pmsh_service/mod/__init__.py
+++ b/components/pm-subscription-handler/pmsh_service/mod/__init__.py
@@ -27,7 +27,7 @@ db = SQLAlchemy()
basedir = os.path.abspath(os.path.dirname(__file__))
-def create_prod_app():
+def create_app():
logger.create_loggers(os.getenv('LOGS_PATH'))
connex_app = App(__name__, specification_dir=basedir)
app = connex_app.app
@@ -38,18 +38,6 @@ def create_prod_app():
return app
-def create_test_app():
- logger.create_loggers('./unit_test_logs')
- connex_app = App(__name__, specification_dir=basedir)
- app = connex_app.app
- app.config['TESTING'] = True
- app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
- app.config['SQLALCHEMY_RECORD_QUERIES'] = True
- app.config['SQLALCHEMY_DATABASE_URI'] = os.environ.get('TEST_DB_URL', 'sqlite://')
- db.init_app(app)
- return app
-
-
def get_db_connection_url():
pg_host = os.getenv('PMSH_PG_URL')
pg_user = os.getenv('PMSH_PG_USERNAME')