Copy of transaction metadata on split

This commit is contained in:
Andrew Shvayka 2018-12-08 18:08:00 +02:00
parent 1bf196bfdf
commit 33e946c418

View File

@ -126,7 +126,7 @@ public final class TbMsg implements Serializable {
}
public TbMsg copy(UUID newId, RuleChainId ruleChainId, RuleNodeId ruleNodeId, long clusterPartition) {
return new TbMsg(newId, type, originator, metaData.copy(), dataType, data, ruleChainId, ruleNodeId, clusterPartition);
return new TbMsg(newId, type, originator, metaData.copy(), dataType, data, transactionData, ruleChainId, ruleNodeId, clusterPartition);
}
}