Skip to content

Commit

Permalink
0003744: Improper variable replacement for ${sourceNodeId} was being
Browse files Browse the repository at this point in the history
replaced with the group name instead of nodeID
  • Loading branch information
jumpmind-josh committed Oct 4, 2018
1 parent b1eba6a commit b519ab1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1713,7 +1713,7 @@ protected Table lookupAndOrderColumnsAccordingToTriggerHistory(String routerId,
}

protected String replaceVariables(Node sourceNode, Node targetNode, String str) {
str = FormatUtils.replace("sourceNodeId", sourceNode.getNodeGroupId(), str);
str = FormatUtils.replace("sourceNodeId", sourceNode.getNodeId(), str);
str = FormatUtils.replace("sourceExternalId", sourceNode.getExternalId(), str);
str = FormatUtils.replace("sourceNodeGroupId", sourceNode.getNodeGroupId(), str);
str = FormatUtils.replace("targetNodeId", targetNode.getNodeGroupId(), str);
Expand Down

0 comments on commit b519ab1

Please sign in to comment.