This is an automated email from the ASF dual-hosted git repository.
agura pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new ca2b70a IGNITE-14752 No-op implementation of closing functionality
for range and watch cursors in meta storage.
ca2b70a is described below
commit ca2b70ae9244b73bfced80949e12e4e9077adce4
Author: Andrey Gura <[email protected]>
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} */