You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2018/07/12 18:17:23 UTC

directory-fortress-core git commit: probably shouldn't be setting min connections here

Repository: directory-fortress-core
Updated Branches:
  refs/heads/master 6dc2472ae -> 089bfdf7e


probably shouldn't be setting min connections here


Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/commit/089bfdf7
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/089bfdf7
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/089bfdf7

Branch: refs/heads/master
Commit: 089bfdf7e8e2058bdf25446c06ad1033371c4c54
Parents: 6dc2472
Author: Shawn McKinney <sm...@apache.org>
Authored: Thu Jul 12 13:17:20 2018 -0500
Committer: Shawn McKinney <sm...@apache.org>
Committed: Thu Jul 12 13:17:20 2018 -0500

----------------------------------------------------------------------
 .../java/org/apache/directory/fortress/core/rest/RestUtils.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/089bfdf7/src/main/java/org/apache/directory/fortress/core/rest/RestUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/core/rest/RestUtils.java b/src/main/java/org/apache/directory/fortress/core/rest/RestUtils.java
index beb471f..b2e3a54 100644
--- a/src/main/java/org/apache/directory/fortress/core/rest/RestUtils.java
+++ b/src/main/java/org/apache/directory/fortress/core/rest/RestUtils.java
@@ -136,7 +136,7 @@ public final class RestUtils
         LOG.info( "javax.net.ssl.trustStore: {}", trustStore );
         System.setProperty( "javax.net.ssl.trustStore", trustStore );
         System.setProperty( "javax.net.ssl.trustStorePassword", trustStorePw );
-        System.setProperty( "http.maxConnections", "50" );
+        //System.setProperty( "http.maxConnections", "50" );
     }
 
     private RestUtils(){