Skip to content

Commit

Permalink
0003831: Be more lenient in the calculation of whether a channel is
Browse files Browse the repository at this point in the history
common
  • Loading branch information
chenson42 committed Dec 17, 2018
1 parent 38dd79f commit 21245d2
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -607,7 +607,9 @@ protected boolean producesCommonBatches(Channel channel, String nodeGroupId, Lis
String currentChannelId = triggerRouter2.getTrigger().getChannelId();
if (anotherChannelTableName.equals(currentTableName) && currentChannelId.equals(channelId)
&& triggerRouter.getRouter().getNodeGroupLink().getTargetNodeGroupId()
.equals(triggerRouter2.getRouter().getNodeGroupLink().getSourceNodeGroupId())) {
.equals(triggerRouter2.getRouter().getNodeGroupLink().getSourceNodeGroupId()) &&
triggerRouter.getRouter().getNodeGroupLink().getSourceNodeGroupId()
.equals(triggerRouter2.getRouter().getNodeGroupLink().getTargetNodeGroupId())) {
testableTriggerRouters.add(triggerRouter);
}
}
Expand Down

0 comments on commit 21245d2

Please sign in to comment.