You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by as...@apache.org on 2020/01/21 21:33:14 UTC

[ignite] branch master updated: IGNITE-12560 Fix incompatible API usage.

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

ascherbakov 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 891d0af  IGNITE-12560 Fix incompatible API usage.
891d0af is described below

commit 891d0af4c8de9ae3640c9d4f873fd14597e52f94
Author: Aleksei Scherbakov <as...@apache.org>
AuthorDate: Wed Jan 22 00:32:46 2020 +0300

    IGNITE-12560 Fix incompatible API usage.
---
 .../ignite/compatibility/persistence/MetaStorageCompatibilityTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/MetaStorageCompatibilityTest.java b/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/MetaStorageCompatibilityTest.java
index 300060d..38305ad 100644
--- a/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/MetaStorageCompatibilityTest.java
+++ b/modules/compatibility/src/test/java/org/apache/ignite/compatibility/persistence/MetaStorageCompatibilityTest.java
@@ -265,7 +265,7 @@ public class MetaStorageCompatibilityTest extends IgnitePersistenceCompatibility
                 ignite.active(true);
 
                 ((IgniteEx)ignite).context().cache().context().database()
-                    .forceCheckpoint("force test checkpoint").futureFor(CheckpointState.FINISHED).get();
+                    .wakeupForCheckpoint("force test checkpoint").get();
 
                 ((GridCacheDatabaseSharedManager)(((IgniteEx)ignite).context().cache().context().database()))
                     .enableCheckpoints(false);