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 2021/02/16 07:46:48 UTC

[ignite] branch master updated: IGNITE-14155 Waiting for condition added to an async event - Fixes #8791.

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

sergeychugunov 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 6e16486  IGNITE-14155 Waiting for condition added to an async event - Fixes #8791.
6e16486 is described below

commit 6e1648638dd99c85a1bec4fa34fc69fcbbaaebfa
Author: Sergey Chugunov <se...@gmail.com>
AuthorDate: Tue Feb 16 10:40:29 2021 +0300

    IGNITE-14155 Waiting for condition added to an async event - Fixes #8791.
---
 .../java/org/apache/ignite/internal/cluster/IgniteClusterIdTagTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/internal/cluster/IgniteClusterIdTagTest.java b/modules/core/src/test/java/org/apache/ignite/internal/cluster/IgniteClusterIdTagTest.java
index 4fabcf3..3513c02 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/cluster/IgniteClusterIdTagTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/cluster/IgniteClusterIdTagTest.java
@@ -237,7 +237,7 @@ public class IgniteClusterIdTagTest extends GridCommonAbstractTest {
         cl1.cluster().tag(CLIENT_CUSTOM_TAG_1);
 
         //tag set from client is applied on other client nodes
-        assertEquals(CLIENT_CUSTOM_TAG_1, cl0.cluster().tag());
+        assertTrue(GridTestUtils.waitForCondition(() -> CLIENT_CUSTOM_TAG_1.equals(cl0.cluster().tag()), 5_000));
     }
 
     /**