You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
py-skygear provides function to create a SQLAlchemy engine connection, which calls create_engine() with the database URL. There is a request to set additional parameter for the create_engine() function, such as pool_pre_ping. This can be achieved by modifying the conn function (in skygear/utils/db.py) to pass kwargs to _get_engine() and create_engine().
The text was updated successfully, but these errors were encountered:
py-skygear provides function to create a SQLAlchemy engine connection, which calls
create_engine()
with the database URL. There is a request to set additional parameter for thecreate_engine()
function, such aspool_pre_ping
. This can be achieved by modifying theconn
function (inskygear/utils/db.py
) to pass kwargs to_get_engine()
andcreate_engine()
.The text was updated successfully, but these errors were encountered: