Skip to content

Commit

Permalink
Merge branch '3.9' of https://github.com/JumpMind/symmetric-ds.git in…
Browse files Browse the repository at this point in the history
…to 3.9
  • Loading branch information
jumpmind-josh committed Jul 17, 2018
2 parents 17543ae + db133b4 commit 590f0c7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1825,7 +1825,7 @@ protected void updateExtractRequestStatus(ISqlTransaction transaction, long extr

protected boolean canProcessExtractRequest(ExtractRequest request, CommunicationType communicationType) {
Trigger trigger = this.triggerRouterService.getTriggerById(request.getTriggerId());
if (! trigger.getSourceTableName().equalsIgnoreCase(TableConstants.getTableName(tablePrefix,
if (trigger != null && !trigger.getSourceTableName().equalsIgnoreCase(TableConstants.getTableName(tablePrefix,
TableConstants.SYM_FILE_SNAPSHOT))) {
return true;
} else {
Expand Down

0 comments on commit 590f0c7

Please sign in to comment.