neonevm / proxy-model.py

Neon Proxy for Solana
https://neon-labs.org
Other
17 stars 19 forks source link

Add connection retries for pg connections #1085

Open kevinji opened 1 year ago

kevinji commented 1 year ago

The current logic in base_db.py doesn't retry Postgres connections if it drops, which we sometimes run into. It would be nice if the connection was closed and reopened if it drops. Perhaps using a connection pool would make that logic easier.