Skip to content

Commit

Permalink
0003925: While using initial load and reverse initial load flags on
Browse files Browse the repository at this point in the history
node_security also create a table_reload_request
  • Loading branch information
jumpmind-josh committed May 7, 2019
1 parent 3b91664 commit 32311e7
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -300,7 +300,6 @@ protected void insertInitialLoadEvents() {
reloadRequest.setTargetNodeId(identity.getNodeId());
reloadRequest.setCreateTable(parameterService.is(ParameterConstants.INITIAL_LOAD_CREATE_SCHEMA_BEFORE_RELOAD));
reloadRequest.setDeleteFirst(parameterService.is(ParameterConstants.INITIAL_LOAD_DELETE_BEFORE_RELOAD));
reloadRequest.setBeforeCustomSql(parameterService.getString(ParameterConstants.INITIAL_LOAD_DELETE_FIRST_SQL));
reloadRequest.setCreateTime(new Date());
log.info("Creating load request from node " + security.getNodeId() + " to node " + identity.getNodeId());
engine.getDataService().insertTableReloadRequest(reloadRequest);
Expand All @@ -314,7 +313,6 @@ protected void insertInitialLoadEvents() {
reloadRequest.setTargetNodeId(security.getNodeId());
reloadRequest.setCreateTable(parameterService.is(ParameterConstants.INITIAL_LOAD_CREATE_SCHEMA_BEFORE_RELOAD));
reloadRequest.setDeleteFirst(parameterService.is(ParameterConstants.INITIAL_LOAD_DELETE_BEFORE_RELOAD));
reloadRequest.setBeforeCustomSql(parameterService.getString(ParameterConstants.INITIAL_LOAD_DELETE_FIRST_SQL));
reloadRequest.setCreateTime(new Date());
log.info("Creating load request from node " + identity.getNodeId() + " to node " + security.getNodeId());
engine.getDataService().insertTableReloadRequest(reloadRequest);
Expand Down

0 comments on commit 32311e7

Please sign in to comment.