Skip to content

Commit

Permalink
SYMMETRICDS-624
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed May 10, 2012
1 parent ef3b198 commit ca8cbdb
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -76,7 +76,8 @@ public Set<String> routeToNodes(SimpleRouterContext routingContext, DataMetaData
TriggerRouter trigger = dataMetaData.getTriggerRouter();
String subSelect = trigger.getRouter().getRouterExpression();
Set<String> nodeIds = null;
if (!StringUtils.isBlank(subSelect)) {
if (!StringUtils.isBlank(subSelect) &&
!(initialLoad && StringUtils.isNotBlank(trigger.getInitialLoadSelect()))) {
Map<String, Object> sqlParams = getDataObjectMap(dataMetaData, symmetricDialect);
sqlParams.put("NODE_GROUP_ID", trigger.getRouter().getNodeGroupLink()
.getTargetNodeGroupId());
Expand Down

0 comments on commit ca8cbdb

Please sign in to comment.