Fix MySQL has gone away

This commit is contained in:
Michel Roux 2019-12-26 23:19:45 +01:00
parent d925f21b01
commit 6b7b45c18d

View File

@ -29,6 +29,7 @@ app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql+pymysql://%s:%s@%s/%s?charset=utf
db_user, db_password, db_host, db_name
)
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True
app.config['SQLALCHEMY_ENGINE_OPTIONS'] = {'pool_recycle': 200}
app.config['SQLALCHEMY_ECHO'] = IS_DEBUG
auth = HTTPBasicAuth()
db = SQLAlchemy(app)