Hi, I have a program which periodically executes a simple query on each connection, and once the connection is being lost it fails during next iteration and doesn't recover the connections.
My configuration is initialSize = 5 maxActive = 5 maxWait = 10000 maxIdle = 3 minIdle = 2 autoReconnect = true autoReconnectForPools = true maxReconnects = 10 testOnBorrow = true validationQuery = SELECT * FROM vtable -- RGRDZ Harut
