This is an automated email from the ASF dual-hosted git repository. amashenkov pushed a commit to branch gg-19225 in repository https://gitbox.apache.org/repos/asf/ignite.git
commit 2a32a34e4144e25d5a7a6a2f7e89267cbd82c083 Author: Eduard Shangareev <[email protected]> AuthorDate: Fri May 31 03:32:55 2019 +0300 GG-19160 GridDeploymentSelfTest#testRedeploy fails --- .../test/java/org/apache/ignite/internal/GridDeploymentSelfTest.java | 2 +- .../internal/processors/service/ServiceDeploymentOnActivationTest.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/core/src/test/java/org/apache/ignite/internal/GridDeploymentSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/GridDeploymentSelfTest.java index f7b97c2..25a5bdb 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/GridDeploymentSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/GridDeploymentSelfTest.java @@ -481,7 +481,7 @@ public class GridDeploymentSelfTest extends GridCommonAbstractTest { /** {@inheritDoc} */ @Override public boolean register(ClassLoader ldr, Class rsrc) throws IgniteSpiException { - if (super.register(ldr, rsrc)) { + if (super.register(ldr, rsrc) && ComputeTaskAdapter.class.isAssignableFrom(rsrc)) { deployCnt++; return true; diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/service/ServiceDeploymentOnActivationTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/service/ServiceDeploymentOnActivationTest.java index c674875..cce660d 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/service/ServiceDeploymentOnActivationTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/service/ServiceDeploymentOnActivationTest.java @@ -28,6 +28,7 @@ import org.apache.ignite.internal.util.typedef.F; import org.apache.ignite.lang.IgnitePredicate; import org.apache.ignite.services.ServiceConfiguration; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; @@ -165,8 +166,8 @@ public class ServiceDeploymentOnActivationTest extends GridCommonAbstractTest { * @throws Exception If failed. */ @Test + @Ignore("https://issues.apache.org/jira/browse/IGNITE-8279") public void testClientsStaticConfigWithoutPersistence() throws Exception { - fail("https://issues.apache.org/jira/browse/IGNITE-8279"); persistence = false;
