You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2020/06/09 12:08:03 UTC

[ignite] branch master updated: IGNITE-13017 Remove hardcoded delay from re-marking failed node as alive. (#7870)

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

av 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 d30485e  IGNITE-13017 Remove hardcoded delay from re-marking failed node as alive. (#7870)
d30485e is described below

commit d30485e989621e55a4edc8d3e43fb8c0a448d811
Author: Vladsz83 <vl...@gmail.com>
AuthorDate: Tue Jun 9 15:07:50 2020 +0300

    IGNITE-13017 Remove hardcoded delay from re-marking failed node as alive. (#7870)
---
 .../main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java  | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java b/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java
index 14c205e..df9f1d4 100644
--- a/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java
+++ b/modules/core/src/main/java/org/apache/ignite/spi/discovery/tcp/ServerImpl.java
@@ -7917,13 +7917,6 @@ class ServerImpl extends TcpDiscoveryImpl {
                     }
 
                     state = RingMessageSendState.STARTING_POINT;
-
-                    try {
-                        Thread.sleep(200);
-                    }
-                    catch (InterruptedException e) {
-                        Thread.currentThread().interrupt();
-                    }
                 }
 
                 return true;