You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/09/02 07:43:19 UTC

[GitHub] [ignite-3] alievmirza opened a new pull request #307: IGNITE-15417 create cursorId on client side

alievmirza opened a new pull request #307:
URL: https://github.com/apache/ignite-3/pull/307


   https://issues.apache.org/jira/browse/IGNITE-15417


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [ignite-3] asfgit closed pull request #307: IGNITE-15417 create cursorId on client side

Posted by GitBox <gi...@apache.org>.
asfgit closed pull request #307:
URL: https://github.com/apache/ignite-3/pull/307


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [ignite-3] sanpwc commented on a change in pull request #307: IGNITE-15417 create cursorId on client side

Posted by GitBox <gi...@apache.org>.
sanpwc commented on a change in pull request #307:
URL: https://github.com/apache/ignite-3/pull/307#discussion_r700890890



##########
File path: modules/metastorage-client/src/main/java/org/apache/ignite/internal/metastorage/client/MetaStorageServiceImpl.java
##########
@@ -177,7 +178,8 @@ public MetaStorageServiceImpl(RaftGroupService metaStorageRaftGrpSvc, String loc
     @Override public @NotNull Cursor<Entry> range(@NotNull ByteArray keyFrom, @Nullable ByteArray keyTo, long revUpperBound) {
         return new CursorImpl<>(
                 metaStorageRaftGrpSvc,
-                metaStorageRaftGrpSvc.run(new RangeCommand(keyFrom, keyTo, revUpperBound, localNodeId)),
+                metaStorageRaftGrpSvc.run(
+                    new RangeCommand(keyFrom, keyTo, revUpperBound, localNodeId, new IgniteUuid(UUID.randomUUID(), 0L))),

Review comment:
       Let's use org.apache.ignite.lang.IgniteUuidGenerator#randomUuid istead.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org