IGNITE-8085 Fix of flaky failures in Ignite Client Nodes test suite: Remote node could not start. - Fixes #3767.
Signed-off-by: dpavlov <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/fe6e70e3 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/fe6e70e3 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/fe6e70e3 Branch: refs/heads/ignite-5789-1 Commit: fe6e70e3c8d6a6349ea00b7ec99b215945ffce6d Parents: 5c8d9ff Author: Fedotov <[email protected]> Authored: Fri May 18 19:38:34 2018 +0300 Committer: dpavlov <[email protected]> Committed: Fri May 18 19:38:34 2018 +0300 ---------------------------------------------------------------------- .../ignite/internal/util/nodestart/StartNodeCallableImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/fe6e70e3/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/StartNodeCallableImpl.java ---------------------------------------------------------------------- diff --git a/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/StartNodeCallableImpl.java b/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/StartNodeCallableImpl.java index c9bc7ee..976bb07 100644 --- a/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/StartNodeCallableImpl.java +++ b/modules/ssh/src/main/java/org/apache/ignite/internal/util/nodestart/StartNodeCallableImpl.java @@ -82,7 +82,7 @@ public class StartNodeCallableImpl implements StartNodeCallable { private static final long NODE_START_CHECK_PERIOD = 2000; /** */ - private static final long NODE_START_CHECK_LIMIT = 5; + private static final long NODE_START_CHECK_LIMIT = 25; /** Specification. */ private final IgniteRemoteStartSpecification spec;
