jenkins has issues opening certificate :(

This commit is contained in:
rusefi 2020-07-17 23:52:08 -04:00
parent 00eaf8a04c
commit 2a1597ff89
3 changed files with 2 additions and 2 deletions

View File

@ -6,4 +6,4 @@ Test certificate generated with the following command
Converted using
keytool -importkeystore -srckeystore keystore.jks -destkeystore keystore.jks -deststoretype pkcs12
keytool -importkeystore -srckeystore test.jks -destkeystore test_pkcs12.jks -deststoretype pkcs12

Binary file not shown.

View File

@ -43,7 +43,7 @@ public class ServerTest {
public void setTestCertificate() throws MalformedURLException {
NetworkConnector.RUSEFI_PROXY_HOSTNAME = ProxyClient.LOCALHOST;
File certificate = new File("certificate/test.jks");
File certificate = new File("certificate/test_pkcs12.jks");
Backend.setupCertificates(certificate, "password");
}