Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Fix "X509ExtendedKeyManager only supported on Server" issue #113

Merged
merged 1 commit into from
Jan 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -419,10 +419,10 @@ int getDefaultHttpActualPort() {
return httpActualPort;
}

class SuperSadSslContextFactory extends SslContextFactory {
class SuperSadSslContextFactory extends SslContextFactory.Server {
SuperSadSslContextFactory(String name, ServerConnectorConfig config) {
super(config.getKeystore());
Preconditions.checkState(config.getKeystore() != null, "no keystore specified for '%s'", name);
setKeyStorePath(config.getKeystore());
setKeyStorePassword(config.getKeystorePassword());
}

Expand Down