You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2019/04/23 22:41:42 UTC

[accumulo] branch master updated: Remove warning after Jetty upgrade

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new 2d39cea  Remove warning after Jetty upgrade
2d39cea is described below

commit 2d39ceac525ae950b3e1f1e29e2e29f49e21c244
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Tue Apr 23 18:35:23 2019 -0400

    Remove warning after Jetty upgrade
---
 .../src/main/java/org/apache/accumulo/monitor/EmbeddedWebServer.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/monitor/src/main/java/org/apache/accumulo/monitor/EmbeddedWebServer.java b/server/monitor/src/main/java/org/apache/accumulo/monitor/EmbeddedWebServer.java
index bac8108..520dd50 100644
--- a/server/monitor/src/main/java/org/apache/accumulo/monitor/EmbeddedWebServer.java
+++ b/server/monitor/src/main/java/org/apache/accumulo/monitor/EmbeddedWebServer.java
@@ -63,7 +63,7 @@ public class EmbeddedWebServer {
       return new AbstractConnectionFactory[] {httpFactory};
     } else {
       LOG.debug("Configuring Jetty to use TLS");
-      final SslContextFactory sslContextFactory = new SslContextFactory();
+      final SslContextFactory sslContextFactory = new SslContextFactory.Server();
       // If the key password is the same as the keystore password, we don't
       // have to explicitly set it. Thus, if the user doesn't provide a key
       // password, don't set anything.