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
There seems to be slight a possibility to connection leak in the pool between acquiring a connection and adding it to the pool. Connection state reset has similar problem as well.
Steps to fix the issue (HikariPool.addConnection):
Obtaining of a datasource connection should be closed (try/catch) in case of a failure prior it has been added to the pool
initSql block should be followed by resetConnectionState in any case (try/finally)
The text was updated successfully, but these errors were encountered:
There seems to be slight a possibility to connection leak in the pool between acquiring a connection and adding it to the pool. Connection state reset has similar problem as well.
Steps to fix the issue (HikariPool.addConnection):
The text was updated successfully, but these errors were encountered: