Skip to content

Commit

Permalink
0005643: Requesting a full load in load wizard will not cancel existing
Browse files Browse the repository at this point in the history
loads to same target node if reload select is populated
  • Loading branch information
joshahicks committed Jan 9, 2023
1 parent 849a986 commit 7ec3704
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -890,7 +890,7 @@ public Map<Integer, ExtractRequest> insertReloadEvents(Node targetNode, boolean
/*
* Outgoing data events are pointless because we are reloading all data
*/
if (isFullLoad) {
if (isFullLoad && StringUtils.isBlank(reloadRequests.get(0).getReloadSelect())) {
engine.getOutgoingBatchService().markAllAsSentForNode(targetNode.getNodeId(),
false);
}
Expand Down

0 comments on commit 7ec3704

Please sign in to comment.