Skip to content

Commit

Permalink
smallrye#2698 Fix: Pulsar - Out of direct memory leak in PulsarNack w…
Browse files Browse the repository at this point in the history
…hile pool message enabled
  • Loading branch information
kamilchociej committed Jul 18, 2024
1 parent 18ede8f commit 72c9eb3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public Uni<Void> handle(PulsarIncomingMessage<?> message, Throwable reason, Meta
consumer.negativeAcknowledge(message.getMessageId());
log.messageFailureNacked(channel, reason.getMessage());
log.messageFailureFullCause(reason);
message.unwrap().release();
return Uni.createFrom().voidItem()
.emitOn(message::runOnMessageContext);
}
Expand Down

0 comments on commit 72c9eb3

Please sign in to comment.