RodionSmolnikovGG commented on a change in pull request #9362:
URL: https://github.com/apache/ignite/pull/9362#discussion_r703001465
##########
File path:
modules/control-utility/src/main/java/org/apache/ignite/internal/commandline/TxCommands.java
##########
@@ -138,8 +139,12 @@ else if (args.getOperation() == VisorTxOperation.KILL)
", consistentId=" + key.consistentId() +
"]");
- for (VisorTxInfo info : entry.getValue().getInfos())
- logger.info(info.toUserString());
+ for (VisorTxInfo info : entry.getValue().getInfos()) {
+ if (Objects.equals(info.getXid(), info.getNearXid()))
+ logger.info(info.toUserString());
+ else
+ logger.info(info.toUserString() + " [Near node may be
missed]");
Review comment:
Set "Near node might has left topology."
--
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]