You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vk...@apache.org on 2021/10/06 00:29:06 UTC

[ignite-3] branch ignite-15683 created (now 2ea63fa)

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

vkulichenko pushed a change to branch ignite-15683
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.


      at 2ea63fa  IGNITE-15683 - Removed incorrect failure condition on node start

This branch includes the following new commits:

     new 2ea63fa  IGNITE-15683 - Removed incorrect failure condition on node start

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[ignite-3] 01/01: IGNITE-15683 - Removed incorrect failure condition on node start

Posted by vk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vkulichenko pushed a commit to branch ignite-15683
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit 2ea63fab6f5bccd51c73534aaae796a595b89c6b
Author: Valentin Kulichenko <va...@gmail.com>
AuthorDate: Tue Oct 5 17:28:28 2021 -0700

    IGNITE-15683 - Removed incorrect failure condition on node start
---
 .../src/main/java/org/apache/ignite/cli/builtins/node/NodeManager.java  | 2 --
 1 file changed, 2 deletions(-)

diff --git a/modules/cli/src/main/java/org/apache/ignite/cli/builtins/node/NodeManager.java b/modules/cli/src/main/java/org/apache/ignite/cli/builtins/node/NodeManager.java
index 5e4b1f2..f97faa8 100644
--- a/modules/cli/src/main/java/org/apache/ignite/cli/builtins/node/NodeManager.java
+++ b/modules/cli/src/main/java/org/apache/ignite/cli/builtins/node/NodeManager.java
@@ -158,8 +158,6 @@ public class NodeManager {
 
             if (content.contains(started))
                 return true;
-            else if (content.contains("Exception"))
-                throw new IgniteCLIException("Can't start the node. Read logs for details: " + file);
         }
 
         return false;