You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ip...@apache.org on 2019/12/20 07:01:01 UTC

[ignite] branch master updated: IGNITE-12457 Increase NetworkTimeout in IgniteCache150ClientsTest (fix for Cache 6 suite)- Fixes #7142.

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

ipavlukhin 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 6464cc4  IGNITE-12457 Increase NetworkTimeout in IgniteCache150ClientsTest (fix for Cache 6 suite)- Fixes #7142.
6464cc4 is described below

commit 6464cc4567f83a5c97c379192997c25b464bd07b
Author: ipavlukhin <vo...@gmail.com>
AuthorDate: Fri Dec 20 09:59:02 2019 +0300

    IGNITE-12457 Increase NetworkTimeout in IgniteCache150ClientsTest (fix for Cache 6 suite)- Fixes #7142.
    
    Signed-off-by: ipavlukhin <vo...@gmail.com>
---
 .../processors/cache/distributed/IgniteCache150ClientsTest.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/IgniteCache150ClientsTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/IgniteCache150ClientsTest.java
index bc63d5b..423359b 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/IgniteCache150ClientsTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/IgniteCache150ClientsTest.java
@@ -55,7 +55,7 @@ public class IgniteCache150ClientsTest extends GridCommonAbstractTest {
         IgniteConfiguration cfg = super.getConfiguration(igniteInstanceName);
 
         cfg.setLocalHost("127.0.0.1");
-        cfg.setNetworkTimeout(30_000);
+        cfg.setNetworkTimeout(60_000);
         cfg.setConnectorConfiguration(null);
         cfg.setPeerClassLoadingEnabled(false);
         cfg.setTimeServerPortRange(200);