From 01c8724f73d1aafc3a21e03ff3ae8af8b689d188 Mon Sep 17 00:00:00 2001 From: Roman Chyla Date: Mon, 18 May 2020 17:52:16 -0400 Subject: [PATCH] Fixed alembic --- alembic/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alembic/env.py b/alembic/env.py index ebf89f6..574aced 100644 --- a/alembic/env.py +++ b/alembic/env.py @@ -47,7 +47,7 @@ def get_app_config(key): if opath not in sys.path: sys.path.insert(0, opath) - from service import app as app_module + from metrics_service import app as app_module app = app_module.create_app() print 'Getting actual config for', key, app.config.get(key)