SammyVimes commented on code in PR #2098:
URL: https://github.com/apache/ignite-3/pull/2098#discussion_r1204297442
##########
modules/metastorage/src/main/java/org/apache/ignite/internal/metastorage/server/raft/MetaStorageWriteHandler.java:
##########
@@ -88,13 +88,9 @@ void handleWriteCommand(CommandClosure<WriteCommand> clo) {
safeTime = cmdWithTime.safeTime();
handleWriteWithTime(clo, cmdWithTime, safeTime);
-
- // Every MetaStorageWriteCommand holds safe time that we
should set as the cluster time.
- clusterTime.updateSafeTime(safeTime);
} else if (command instanceof SyncTimeCommand) {
- clusterTime.updateSafeTime(((SyncTimeCommand)
command).safeTime());
-
- clo.result(null);
+ // TODO: IGNITE-19199 WatchProcessor must be notified of the
new safe time.
+ throw new
UnsupportedOperationException("https://issues.apache.org/jira/browse/IGNITE-19199");
Review Comment:
Yes
--
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]