Luis Fernando Gomes

Results 12 comments of Luis Fernando Gomes

It is braking [ateliedocodigo/eve-healthcheck](https://github.com/ateliedocodigo/eve-healthcheck), cause it shares database connection pool with health check ``` [2019-10-09 13:03:01,787] ERROR:healthcheck.healthcheck:73 - module 'eve' has no attribute 'SOURCES' Traceback (most recent call last): File...

As documented [here](https://flask.palletsprojects.com/en/1.1.x/appcontext/), a possible solution is use flask app context like: ```python def check_wrapper(app): def database_check(): with app.app_context(): # perform a count con = app.db.connect() if not: return False,...