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

[ignite-3] branch main updated (b82c1cb -> da4d47f)

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

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


    from b82c1cb  IGNITE-15285 Properly splitting ConfigurationManager instances (node and cluster) (#273)
     new 6a9740a  IGNITE-15298 Muted ITMetaStorageServicePersistenceTest.testSnapshot
     new da4d47f  IGNITE-15312 Muted ITNodeTest.testPreVote

The 2 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.


Summary of changes:
 .../metastorage/client/ITMetaStorageServicePersistenceTest.java         | 2 ++
 .../java/org/apache/ignite/raft/jraft/core/ITNodeTest.java              | 1 +
 2 files changed, 3 insertions(+)

[ignite-3] 01/02: IGNITE-15298 Muted ITMetaStorageServicePersistenceTest.testSnapshot

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

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

commit 6a9740af20f0ca3189519039b60cd111000a4180
Author: Slava Koptilin <sl...@gmail.com>
AuthorDate: Mon Aug 16 14:44:39 2021 +0300

    IGNITE-15298 Muted ITMetaStorageServicePersistenceTest.testSnapshot
---
 .../metastorage/client/ITMetaStorageServicePersistenceTest.java         | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/metastorage-client/src/integrationTest/java/org/apache/ignite/internal/metastorage/client/ITMetaStorageServicePersistenceTest.java b/modules/metastorage-client/src/integrationTest/java/org/apache/ignite/internal/metastorage/client/ITMetaStorageServicePersistenceTest.java
index 75fc008..6908980 100644
--- a/modules/metastorage-client/src/integrationTest/java/org/apache/ignite/internal/metastorage/client/ITMetaStorageServicePersistenceTest.java
+++ b/modules/metastorage-client/src/integrationTest/java/org/apache/ignite/internal/metastorage/client/ITMetaStorageServicePersistenceTest.java
@@ -52,6 +52,7 @@ import org.apache.ignite.raft.client.message.RaftClientMessagesFactory;
 import org.apache.ignite.raft.client.service.RaftGroupService;
 import org.apache.ignite.raft.client.service.impl.RaftGroupServiceImpl;
 import org.junit.jupiter.api.AfterEach;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.extension.ExtendWith;
 import org.junit.jupiter.params.ParameterizedTest;
 import org.junit.jupiter.params.provider.MethodSource;
@@ -163,6 +164,7 @@ public class ITMetaStorageServicePersistenceTest {
      */
     @ParameterizedTest
     @MethodSource("testSnapshotData")
+    @Disabled("https://issues.apache.org/jira/browse/IGNITE-15298")
     public void testSnapshot(TestData testData) throws Exception {
         ByteArray firstKey = ByteArray.fromString("first");
         byte[] firstValue = "firstValue".getBytes(StandardCharsets.UTF_8);

[ignite-3] 02/02: IGNITE-15312 Muted ITNodeTest.testPreVote

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

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

commit da4d47fa4fb0e6a120eca9eb9479f66a957a48d0
Author: Slava Koptilin <sl...@gmail.com>
AuthorDate: Mon Aug 16 14:47:21 2021 +0300

    IGNITE-15312 Muted ITNodeTest.testPreVote
---
 .../java/org/apache/ignite/raft/jraft/core/ITNodeTest.java               | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ITNodeTest.java b/modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ITNodeTest.java
index 2301939..dbc93c5 100644
--- a/modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ITNodeTest.java
+++ b/modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ITNodeTest.java
@@ -1731,6 +1731,7 @@ public class ITNodeTest {
     }
 
     @Test
+    @Disabled("https://issues.apache.org/jira/browse/IGNITE-15312")
     public void testPreVote() throws Exception {
         List<PeerId> peers = TestUtils.generatePeers(3);