Skip to content

Commit

Permalink
0004501: RouterService.routeDataForChannel checks incorrect reference
Browse files Browse the repository at this point in the history
for null
  • Loading branch information
philipmarzullo64 committed Aug 14, 2020
1 parent c4d4642 commit db205fb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -500,7 +500,7 @@ protected long routeDataForChannel(ProcessInfo processInfo, final NodeChannel no
if (overrideBatchesByNodes != null) {
context.getBatchesByNodes().putAll(overrideBatchesByNodes);
}
if (overrideBatchesByNodes != null) {
if (overrideBatchesByGroups != null) {
context.getBatchesByGroups().putAll(overrideBatchesByGroups);
}

Expand Down

0 comments on commit db205fb

Please sign in to comment.