Do not send event when interrupted.
diff --git a/src/main/java/org/apache/sling/distribution/journal/kafka/KafkaMessageSender.java b/src/main/java/org/apache/sling/distribution/journal/kafka/KafkaMessageSender.java
index e3a434d..70e5a6a 100644
--- a/src/main/java/org/apache/sling/distribution/journal/kafka/KafkaMessageSender.java
+++ b/src/main/java/org/apache/sling/distribution/journal/kafka/KafkaMessageSender.java
@@ -67,7 +67,7 @@
             LOG.debug("Sent to {}", metadata);
         } catch (InterruptedException e) {
             Thread.currentThread().interrupt();
-            handleException(topic, e);
+            throw new MessagingException(format("Interrupted while trying to send to topic %s", topic), e);
         } catch (Exception e) {
             handleException(topic, e);
         }