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:07 UTC

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

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);