Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 35DCB18995 for ; Mon, 1 Feb 2016 10:24:17 +0000 (UTC) Received: (qmail 20259 invoked by uid 500); 1 Feb 2016 10:24:10 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 20202 invoked by uid 500); 1 Feb 2016 10:24:10 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 20181 invoked by uid 99); 1 Feb 2016 10:24:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Feb 2016 10:24:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B4883DFD7D; Mon, 1 Feb 2016 10:24:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Mon, 01 Feb 2016 10:24:10 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [01/12] ignite git commit: Proper initialization of utility and marshalling pools. Repository: ignite Updated Branches: refs/heads/ignite-2224 eccbd0d80 -> 21567fab3 Proper initialization of utility and marshalling pools. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/c2e5638d Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/c2e5638d Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/c2e5638d Branch: refs/heads/ignite-2224 Commit: c2e5638d01fbe44f90878d1aee6bf4979a935a7c Parents: a34d705 Author: Denis Magda Authored: Fri Jan 29 15:51:44 2016 +0300 Committer: Denis Magda Committed: Fri Jan 29 15:51:44 2016 +0300 ---------------------------------------------------------------------- .../src/main/java/org/apache/ignite/internal/IgnitionEx.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/c2e5638d/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java b/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java index 5153fb3..8f23b05 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/IgnitionEx.java @@ -1662,7 +1662,7 @@ public class IgnitionEx { "utility", cfg.getGridName(), myCfg.getUtilityCacheThreadPoolSize(), - DFLT_SYSTEM_MAX_THREAD_CNT, + myCfg.getUtilityCacheThreadPoolSize(), myCfg.getUtilityCacheKeepAliveTime(), new LinkedBlockingQueue(DFLT_SYSTEM_THREADPOOL_QUEUE_CAP)); @@ -1670,7 +1670,7 @@ public class IgnitionEx { "marshaller-cache", cfg.getGridName(), myCfg.getMarshallerCacheThreadPoolSize(), - DFLT_SYSTEM_MAX_THREAD_CNT, + myCfg.getMarshallerCacheThreadPoolSize(), myCfg.getMarshallerCacheKeepAliveTime(), new LinkedBlockingQueue(DFLT_SYSTEM_THREADPOOL_QUEUE_CAP));