1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Update JettyCasService

Align with changes to Jetty's SslContextFactory

Issue gh-7874
This commit is contained in:
Josh Cummings
2020-01-30 11:25:44 -07:00
parent 50d8200348
commit df8feb8919
@@ -66,7 +66,7 @@ class JettyCasService extends Server {
String password = System.getProperty('javax.net.ssl.trustStorePassword','password')
SslContextFactory sslContextFactory = new SslContextFactory();
SslContextFactory sslContextFactory = new SslContextFactory.Server();
sslContextFactory.setKeyStorePath(getTrustStore());
sslContextFactory.setKeyStorePassword(password);
sslContextFactory.setKeyManagerPassword(password);