mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-07 19:31:45 +01:00
Close old and return new if connection invalid
This commit is contained in:
parent
8641bd5f0d
commit
6aae5be083
@ -81,11 +81,14 @@ public class MySQLDB extends SQLDB {
|
|||||||
public Connection getConnection() throws SQLException {
|
public Connection getConnection() throws SQLException {
|
||||||
Connection connection = dataSource.getConnection();
|
Connection connection = dataSource.getConnection();
|
||||||
if (!connection.isValid(5)) {
|
if (!connection.isValid(5)) {
|
||||||
|
connection.close();
|
||||||
if (dataSource instanceof HikariDataSource) {
|
if (dataSource instanceof HikariDataSource) {
|
||||||
((HikariDataSource) dataSource).close();
|
((HikariDataSource) dataSource).close();
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
setupDataSource();
|
setupDataSource();
|
||||||
|
// get new connection after restarting pool
|
||||||
|
return dataSource.getConnection();
|
||||||
} catch (DBInitException e) {
|
} catch (DBInitException e) {
|
||||||
throw new DBOpException("Failed to restart DataSource after a connection was invalid: " + e.getMessage(), e);
|
throw new DBOpException("Failed to restart DataSource after a connection was invalid: " + e.getMessage(), e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user