You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CONJ-858 Properties parameter different than string not taken in account
``` Properties connProperties = new Properties(); connProperties.setProperty("useSSL", "true"); ``` is ok, but using the same as object will only be taken in account when value has a string value ``` Properties connProperties = new Properties(); connProperties.put("useSSL", true); ``` useSSL will not be enable, without any error.
0 commit comments