-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Labels
Description
When using sqlite3 pooled connections and executing an update SQL, the connection is never returned back to the pool after the update completes. When using select SQL statements, everything works properly.
Both select and update emit the close event, but only select emits the end event.
It looks like ConnectionPool releases the connection only when it gets the end event. Since end is never emitted with update statements, the connection is never returned to the pool.
Reactions are currently unavailable