Skip to content

Commit

Permalink
0003383: IReloadGenerator is not used when node security flag is used
Browse files Browse the repository at this point in the history
for initial loads
  • Loading branch information
jumpmind-josh committed Jan 19, 2018
1 parent d0a79cc commit 630d6eb
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -269,10 +269,10 @@ protected void insertInitialLoadEvents() {


for (NodeSecurity security : nodeSecurities) {
List<TriggerHistory> activeHistories = triggerRouterService.getActiveTriggerHistories();
Node targetNode = engine.getNodeService().findNode(security.getNodeId());
List<TriggerHistory> activeHistories = extensionService.getExtensionPoint(IReloadGenerator.class).getActiveTriggerHistories(targetNode);

if (activeHistories.size() > 0) {
Node targetNode = engine.getNodeService().findNode(security.getNodeId());
boolean thisMySecurityRecord = security.getNodeId().equals(
identity.getNodeId());
boolean reverseLoadQueued = security.isRevInitialLoadEnabled();
Expand Down

0 comments on commit 630d6eb

Please sign in to comment.