Added support for allowPublicKeyRetrieval=true in the JDBC launch (#4635)

options for MySQL

Co-authored-by: BuildTools <unconfigured@null.spigotmc.org>
This commit is contained in:
rosaage
2021-09-23 00:03:03 +02:00
committed by GitHub
parent 8e5251ba66
commit 280eb0ba51
3 changed files with 7 additions and 0 deletions

View File

@@ -61,6 +61,11 @@ public final class SQLDatabaseManager implements DatabaseManager {
connectionString+=
"?useSSL=false";
if(mcMMO.p.getGeneralConfig().getMySQLPublicKeyRetrieval()) {
connectionString+=
"&allowPublicKeyRetrieval=true";
}
try {
// Force driver to load if not yet loaded
Class.forName(driverPath);