I'm getting connection lost errors even though I'm periodically calling ping. Is there a correct way to ping all connections in the pool to keep them open? If I call this every minute we should loop through all connections in the pool and ping them right?
async with pool.acquire() as conn:
await conn.ping(True)
I'm getting connection lost errors even though I'm periodically calling ping. Is there a correct way to ping all connections in the pool to keep them open? If I call this every minute we should loop through all connections in the pool and ping them right?