Github user kamaci commented on a diff in the pull request:
https://github.com/apache/nutch/pull/147#discussion_r76460574
--- Diff: src/test/org/apache/nutch/api/AbstractNutchAPITestBase.java ---
@@ -160,6 +177,37 @@ private void initializeSSLProperties() {
conf.set("restapi.auth.ssl.keypass", "password");
}
+ private void loadCertificate() throws CertificateException,
NoSuchAlgorithmException, KeyStoreException, IOException {
+ KeyStore ks = KeyStore.getInstance(KeyStore.getDefaultType());
+ char[] password = "testpassword".toCharArray();
+ String testTrustKeyStorePath = "src/test/testTrustKeyStore";
--- End diff --
Does this break Windows? I just give the path and I think it won't be a
problem. Do I miss anything?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---