Hikari pool gets exhausted #483
Answered
by
pietermartin
marinsimina
asked this question in
Q&A
-
Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
pietermartin
Mar 16, 2023
Replies: 1 comment
-
You must not call |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
marinsimina
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You must not call
g.tx().close()
.Always only call
g.tx().commit()
org.tx().rollback()
. It is important to alwayscommit
orrollback
on the transaction else you will end up withidle in transaction
connections on the database.