[ https://issues.apache.org/jira/browse/ZOOKEEPER-2767?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15994394#comment-15994394 ]
Ramu kakarla commented on ZOOKEEPER-2767: ------------------------------------------ I have created branch ZOOKEEPER-2767 cloning master .But the patch can be applied on 3.5. Could somebody review the changes > Correct the exception messages in X509Util if truststore location or password > is not configured > ----------------------------------------------------------------------------------------------- > > Key: ZOOKEEPER-2767 > URL: https://issues.apache.org/jira/browse/ZOOKEEPER-2767 > Project: ZooKeeper > Issue Type: Improvement > Components: java client, server > Affects Versions: 3.5.4, 3.6.0 > Reporter: Abhishek Kumar > Priority: Trivial > > In > org.apache.zookeeper.common.X509Util.org.apache.zookeeper.common.X509Util.createSSLContext > exception messages contains keystore related messages instead of truststore > messages for truststore location/password checks: > {noformat} > if (trustStoreLocationProp == null && trustStorePasswordProp == null) { > LOG.warn("keystore not specified for client connection"); > } else { > if (trustStoreLocationProp == null) { > throw new SSLContextException("keystore location not > specified for client connection"); > } > if (trustStorePasswordProp == null) { > throw new SSLContextException("keystore password not > specified for client connection"); > } > try { > trustManagers = new TrustManager[]{ > createTrustManager(trustStoreLocationProp, > trustStorePasswordProp)}; > } catch (TrustManagerException e) { > throw new SSLContextException("Failed to create KeyManager", > e); > } > } > {noformat} -- This message was sent by Atlassian JIRA (v6.3.15#6346)