GUACAMOLE-1135: Return StoreUrls in URI format

This commit is contained in:
Richard Grime
2020-08-05 08:52:54 +00:00
parent 3c4c81f0b6
commit d32ebd656a

View File

@@ -95,7 +95,7 @@ public class MySQLAuthenticationProviderModule implements Module {
File trustStore = environment.getMySQLSSLTrustStore();
if (trustStore != null)
driverProperties.setProperty("trustCertificateKeyStoreUrl",
trustStore.getAbsolutePath());
trustStore.toURI().toString());
String trustPassword = environment.getMySQLSSLTrustPassword();
if (trustPassword != null)
@@ -105,7 +105,7 @@ public class MySQLAuthenticationProviderModule implements Module {
File clientStore = environment.getMySQLSSLClientStore();
if (clientStore != null)
driverProperties.setProperty("clientCertificateKeyStoreUrl",
clientStore.getAbsolutePath());
clientStore.toURI().toString());
String clientPassword = environment.getMYSQLSSLClientPassword();
if (clientPassword != null)