diff options
author | Frederick Muriuki Muriithi | 2022-08-31 03:27:28 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-08-31 03:27:28 +0300 |
commit | 215f4e07ccb7cef5db2c50d322a28576e2b9fd68 (patch) | |
tree | d32b3c61d70c9f5311270309af361cd0f46f4ed1 /qc_app/__init__.py | |
parent | 19c376c4b60592f4bba0e26952faa3a71b6f5641 (diff) | |
download | gn-uploader-215f4e07ccb7cef5db2c50d322a28576e2b9fd68.tar.gz |
Check connections outside app factory
Check the connections in the wsgi.py file, outside of the `create_app`
application factory to avoid issues with tests failing due to test app
not initialising because of missing connections in the test
environment.
Diffstat (limited to 'qc_app/__init__.py')
-rw-r--r-- | qc_app/__init__.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/qc_app/__init__.py b/qc_app/__init__.py index eefe236..6b760b9 100644 --- a/qc_app/__init__.py +++ b/qc_app/__init__.py @@ -7,7 +7,6 @@ from flask import Flask from .entry import entrybp from .parse import parsebp from .dbinsert import dbinsertbp -from .check_connections import check_db, check_redis def instance_path(): """Retrieve the `instance_path`. Raise an exception if not defined.""" @@ -26,10 +25,6 @@ def create_app(instance_dir): app.config.from_pyfile(os.path.join(os.getcwd(), "etc/default_config.py")) app.config.from_pyfile("config.py") # Override defaults with instance path - # Check the connection - check_db(app.config["SQL_URI"]) - check_redis(app.config["REDIS_URL"]) - # setup blueprints app.register_blueprint(entrybp, url_prefix="/") app.register_blueprint(parsebp, url_prefix="/parse") |