Skip to content

Commit

Permalink
remove invalid and confusing check of node channel control is suspend…
Browse files Browse the repository at this point in the history
…ed in the router service
  • Loading branch information
chenson42 committed Jun 6, 2013
1 parent df30ea0 commit e4bddf5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ protected int routeDataForEachChannel(DataGapDetector gapDetector) {
.getTriggerRoutersByChannel(engine.getParameterService().getNodeGroupId());

for (NodeChannel nodeChannel : channels) {
if (!nodeChannel.isSuspendEnabled() && nodeChannel.isEnabled()) {
if (nodeChannel.isEnabled()) {
processInfo.setCurrentChannelId(nodeChannel.getChannelId());
dataCount += routeDataForChannel(processInfo,
nodeChannel,
Expand Down

0 comments on commit e4bddf5

Please sign in to comment.