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
Perhaps it is necessary to change con.end() to con.release() because of this warning:
Calling conn.end() to release a pooled connection is deprecated. In next version calling conn.end() will be restored to default conn.end() behavior. Use conn.release() instead.
thx Jens
The text was updated successfully, but these errors were encountered:
Thank you for reminding this. It's not released just yet, but I'm making a change to check if release is defined and use it instead. Otherwise it will continue to call end.
There are changes made to the actual mysql driver when using pooled connections:
mysqljs/mysql#537
Perhaps it is necessary to change con.end() to con.release() because of this warning:
Calling conn.end() to release a pooled connection is deprecated. In next version calling conn.end() will be restored to default conn.end() behavior. Use conn.release() instead.
thx Jens
The text was updated successfully, but these errors were encountered: