Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
1.2.0
-
None
Description
MySQLEnvironment.java returns the Trust Store properties (MYSQL_SSL_TRUST_STORE and MYSQL_SSL_TRUST_PASSWORD), rather than Client Store (MYSQL_SSL_CLIENT_STORE and MYSQL_SSL_CLIENT_PASSWORD):
public File getMySQLSSLClientStore() throws GuacamoleException { return getProperty(MySQLGuacamoleProperties.MYSQL_SSL_TRUST_STORE); } public String getMYSQLSSLClientPassword() throws GuacamoleException { return getProperty(MySQLGuacamoleProperties.MYSQL_SSL_TRUST_PASSWORD); }