diff --git a/aemdesign-aem-services/src/main/java/design/aem/transport/AkamaiTransportHandler.java b/aemdesign-aem-services/src/main/java/design/aem/transport/AkamaiTransportHandler.java index 0afcf1ac4..ce2dec305 100644 --- a/aemdesign-aem-services/src/main/java/design/aem/transport/AkamaiTransportHandler.java +++ b/aemdesign-aem-services/src/main/java/design/aem/transport/AkamaiTransportHandler.java @@ -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.");