Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
wildone committed May 15, 2021
2 parents f04d258 + 35eb7c0 commit 8758e63
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,10 @@ public ReplicationResult deliver(TransportContext ctx, ReplicationTransaction tx
ReplicationActionType replicationType = tx.getAction().getType();

// only runs the code if ReplicationAction type matches any of the following
if (replicationType == ReplicationActionType.TEST || replicationType == ReplicationActionType.ACTIVATE || replicationType == ReplicationActionType.DEACTIVATE) {
if (replicationType == ReplicationActionType.TEST ||
replicationType == ReplicationActionType.ACTIVATE ||
replicationType == ReplicationActionType.DEACTIVATE ||
replicationType == ReplicationActionType.DELETE ) {
return handleRequest(tx);
} else {
throw new ReplicationException("Replication action type " + replicationType + " not supported.");
Expand Down

0 comments on commit 8758e63

Please sign in to comment.