Skip to content

Commit

Permalink
0004093: Queue initial load in its own job
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Oct 17, 2019
1 parent 10b270b commit 08a789b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -285,7 +285,7 @@ protected void processTableRequestLoads(Node source, ProcessInfo processInfo) {
protected List<TriggerRouter> getTriggerRoutersForNodeGroup(Map<String, List<TriggerRouter>> triggerRoutersByNodeGroup, String nodeGroupId) {
List<TriggerRouter> list = triggerRoutersByNodeGroup.get(nodeGroupId);
if (list == null) {
engine.getTriggerRouterService().getAllTriggerRoutersForReloadForCurrentNode(parameterService.getNodeGroupId(), nodeGroupId);
list = engine.getTriggerRouterService().getAllTriggerRoutersForReloadForCurrentNode(parameterService.getNodeGroupId(), nodeGroupId);
triggerRoutersByNodeGroup.put(nodeGroupId, list);
}
return list;
Expand Down

0 comments on commit 08a789b

Please sign in to comment.