You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ao...@apache.org on 2017/04/24 12:02:05 UTC

[50/50] [abbrv] ambari git commit: AMBARI-20743. Prototype server websocket endpoint with STOMP sub-protocol. (mpapirkovskyy)

AMBARI-20743. Prototype server websocket endpoint with STOMP sub-protocol. (mpapirkovskyy)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/8cc384ca
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/8cc384ca
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/8cc384ca

Branch: refs/heads/branch-3.0-perf
Commit: 8cc384cae0eba1705a7de77eb5747b96c0bc0b21
Parents: fb2ba49
Author: Myroslav Papirkovskyi <mp...@hortonworks.com>
Authored: Mon Apr 10 18:48:54 2017 +0300
Committer: Andrew Onishuk <ao...@hortonworks.com>
Committed: Mon Apr 24 15:00:48 2017 +0300

----------------------------------------------------------------------
 .../java/org/apache/ambari/server/controller/AmbariServer.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/8cc384ca/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java b/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java
index e10a6e7..3a3908d 100644
--- a/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java
+++ b/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java
@@ -311,7 +311,7 @@ public class AmbariServer {
     final SessionIdManager sessionIdManager = new DefaultSessionIdManager(server);
     sessionHandler.setSessionIdManager(sessionIdManager);
     server.setSessionIdManager(sessionIdManager);
-    
+
     // Agent Jetty thread pool - widen the thread pool if needed !
     Integer agentAcceptors = configs.getAgentApiAcceptors() != null ?
       configs.getAgentApiAcceptors() : DEFAULT_ACCEPTORS_COUNT;
@@ -319,7 +319,6 @@ public class AmbariServer {
     Server serverForAgent = configureJettyThreadPool(agentAcceptors * 2,
       AGENT_THREAD_POOL_NAME, configs.getAgentThreadPoolSize());
 
-
     setSystemProperties(configs);
 
     runDatabaseConsistencyCheck();