Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0002310: Don't route sym_parameter changes if the parameter change is…
… a local change
  • Loading branch information
chenson42 committed Jun 12, 2015
1 parent 2c305be commit a93f685
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -180,6 +180,11 @@ public Set<String> routeToNodes(SimpleRouterContext routingContext, DataMetaData

if (tableMatches(dataMetaData, TableConstants.SYM_PARAMETER)) {
routingContext.put(CTX_KEY_FLUSH_PARAMETERS_NEEDED, Boolean.TRUE);

if (me.getExternalId().equals(columnValues.get("EXTERNAL_ID"))
&& me.getNodeGroupId().equals(columnValues.get("NODE_GROUP_ID"))) {
nodeIds.clear();
}

if (StringUtils.isBlank(dataMetaData.getData().getSourceNodeId())
&& (dataMetaData.getData().getRowData() != null && dataMetaData
Expand Down

0 comments on commit a93f685

Please sign in to comment.