You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by il...@apache.org on 2019/12/13 16:47:11 UTC

[ignite] branch master updated: IGNITE-12395 Optimize configuration when starting client nodes - Fixes #7112.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6c7fe05  IGNITE-12395 Optimize configuration when starting client nodes - Fixes #7112.
6c7fe05 is described below

commit 6c7fe053661e6f822d8d18ee9a323897e630ab6b
Author: Ilya Kasnacheev <il...@gmail.com>
AuthorDate: Fri Dec 13 19:46:48 2019 +0300

    IGNITE-12395 Optimize configuration when starting client nodes - Fixes #7112.
    
    Signed-off-by: Ilya Kasnacheev <il...@gmail.com>
---
 .../java/org/apache/ignite/testframework/junits/GridAbstractTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java b/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java
index cee74fd..052c327 100755
--- a/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/testframework/junits/GridAbstractTest.java
@@ -980,7 +980,7 @@ public abstract class GridAbstractTest extends JUnitAssertAware {
                     }
                 }
 
-                Ignite node = IgnitionEx.start(cfg, ctx);
+                Ignite node = IgnitionEx.start(optimize(cfg), ctx);
 
                 IgniteConfiguration nodeCfg = node.configuration();