You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by se...@apache.org on 2015/05/15 15:43:07 UTC

incubator-ignite git commit: # IGNITE-709 Fix GridCacheTcpClientDiscoveryMultiThreadedTest

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-709_2 8fcc700fb -> 2d90db782


# IGNITE-709 Fix GridCacheTcpClientDiscoveryMultiThreadedTest


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/2d90db78
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/2d90db78
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/2d90db78

Branch: refs/heads/ignite-709_2
Commit: 2d90db782ff0464761f9271d862434097ad158a6
Parents: 8fcc700
Author: sevdokimov <se...@gridgain.com>
Authored: Fri May 15 16:43:00 2015 +0300
Committer: sevdokimov <se...@gridgain.com>
Committed: Fri May 15 16:43:00 2015 +0300

----------------------------------------------------------------------
 .../cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/2d90db78/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java
index 0554a10..9250361 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java
@@ -104,14 +104,14 @@ public class GridCacheTcpClientDiscoveryMultiThreadedTest extends GridCacheAbstr
      * @throws Exception If failed.
      */
     public void testCacheConcurrentlyWithMultipleClientNodes() throws Exception {
-        srvNodesCnt = 3;
-        clientNodesCnt = 4;
+        srvNodesCnt = 2;
+        clientNodesCnt = 3;
 
         startServerNodes();
 
         client = true;
 
-        for (int n = 0; n < 3; n++) {
+        for (int n = 0; n < 2; n++) {
             startGridsMultiThreaded(srvNodesCnt, clientNodesCnt);
 
             checkTopology(gridCount());