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
Future<SqlConnection> fsql = pool.getConnection();
...
SqlConnection c = fsql.result();
...
Future<Void> v = c.close();
and looking at the protocol interaction - f.ex. with https://github.com/jesperpedersen/pgprtdbg/ - you will notice that the 'X' message is never sent during c.close() which is a protocol violation.