vldpyatkov commented on code in PR #1688:
URL: https://github.com/apache/ignite-3/pull/1688#discussion_r1127923345
##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItRaftCommandLeftInLogUntilRestartTest.java:
##########
@@ -175,9 +174,9 @@ private void restartClusterWithNotAppliedCommands(
BinaryRowEx key = new
TupleMarshallerImpl(table.schemaView()).marshal(Tuple.create().set("id", 42));
if (isNode0Leader) {
- assertNull(table.internalTable().get(key, new
HybridClockImpl().now(), node1.node()).get());
+ assertNull(table.internalTable().get(key, node1.clock().now(),
node1.node()).get());
} else {
- assertNull(table.internalTable().get(key, new
HybridClockImpl().now(), node0.node()).get());
+ assertNull(table.internalTable().get(key, node1.clock().now(),
node0.node()).get());
Review Comment:
Here it has no difference.
The only thing that matters is that the data was applied finally.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]