mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-28 05:35:26 +01:00
Fix invalid property
This commit is contained in:
parent
e4e80c9c31
commit
6252a5bc75
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user