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

Commit

Permalink
Fix "X509ExtendedKeyManager only supported on Server" issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rushalias committed Jan 10, 2020
1 parent a341c41 commit 6e3ca0e
Showing 1 changed file with 2 additions and 2 deletions.
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

6 comments on commit 6e3ca0e

@opentable-devops
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Architecture Team / Java TC Platform / otj-server / PR Build Build ???.113/merge.26 is now running

@opentable-devops
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Architecture Team / Java TC Platform / otj-server / PR Build Build 3.0.20-SNAPSHOT.113/merge.26 outcome was FAILURE
Summary: Compilation error: Compiler (new) Build time: 00:00:37

@opentable-devops
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Architecture Team / Java TC Platform / otj-server / PR Build Build ???.113/merge.27 is now running

@opentable-devops
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Architecture Team / Java TC Platform / otj-server / PR Build Build 3.0.20-SNAPSHOT.113/merge.27 outcome was FAILURE
Summary: Compilation error: Compiler Build time: 00:00:23

@opentable-devops
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Architecture Team / Java TC Platform / otj-server / PR Build Build ???.113/merge.29 is now running

@opentable-devops
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Architecture Team / Java TC Platform / otj-server / PR Build Build 3.0.21-SNAPSHOT.113/merge.29 outcome was SUCCESS
Summary: Tests passed: 85, ignored: 2 Build time: 00:07:00

Please sign in to comment.