Fix invalid property

This commit is contained in:
Luck 2016-10-16 20:53:12 +01:00
parent e4e80c9c31
commit 6252a5bc75
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

View File

@ -69,13 +69,13 @@ public class MySQLDatastore extends SQLDatastore {
config.addDataSourceProperty("cachePrepStmts", true);
config.addDataSourceProperty("prepStmtCacheSize", 250);
config.addDataSourceProperty("prepStmtCacheSqlLimit", 2048);
config.addDataSourceProperty("leakDetectionThreshold", 5000);
config.addDataSourceProperty("useServerPrepStmts", true);
config.addDataSourceProperty("cacheCallableStmts", true);
config.addDataSourceProperty("alwaysSendSetIsolation", false);
config.addDataSourceProperty("cacheServerConfiguration", true);
config.addDataSourceProperty("elideSetAutoCommits", true);
config.addDataSourceProperty("useLocalSessionState", true);
config.setLeakDetectionThreshold(5000);
hikari = new HikariDataSource(config);