You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2021/05/20 17:07:59 UTC

[ignite-3] branch ignite-14752 created (now 2382879)

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

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


      at 2382879  IGNITE-14752 No-op implementation of closing functionality for range and watch cursors in meta storage.

This branch includes the following new commits:

     new 2382879  IGNITE-14752 No-op implementation of closing functionality for range and watch cursors in meta storage.

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


[ignite-3] 01/01: IGNITE-14752 No-op implementation of closing functionality for range and watch cursors in meta storage.

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

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

commit 2382879930a72ffd6d36ecc97b2eb6cea7826618
Author: Andrey Gura <ag...@apache.org>
AuthorDate: Thu May 20 20:07:30 2021 +0300

    IGNITE-14752 No-op implementation of closing functionality for range and watch cursors in meta storage.
---
 .../internal/metastorage/server/SimpleInMemoryKeyValueStorage.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/metastorage-server/src/main/java/org/apache/ignite/internal/metastorage/server/SimpleInMemoryKeyValueStorage.java b/modules/metastorage-server/src/main/java/org/apache/ignite/internal/metastorage/server/SimpleInMemoryKeyValueStorage.java
index 271b8df..901c16b 100644
--- a/modules/metastorage-server/src/main/java/org/apache/ignite/internal/metastorage/server/SimpleInMemoryKeyValueStorage.java
+++ b/modules/metastorage-server/src/main/java/org/apache/ignite/internal/metastorage/server/SimpleInMemoryKeyValueStorage.java
@@ -565,7 +565,7 @@ public class SimpleInMemoryKeyValueStorage implements KeyValueStorage {
 
         /** {@inheritDoc} */
         @Override public void close() throws Exception {
-            // TODO: implement.
+            // No-op.
         }
 
         /** {@inheritDoc} */
@@ -686,7 +686,7 @@ public class SimpleInMemoryKeyValueStorage implements KeyValueStorage {
 
         /** {@inheritDoc} */
         @Override public void close() throws Exception {
-            // TODO: implement.
+            // No-op.
         }
 
         /** {@inheritDoc} */