Skip to content

Commit

Permalink
Reactor kafka wrapper delegates to wrong method
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit committed Jan 25, 2024
1 parent ec5d7ea commit e562e59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Flux<ConsumerRecord<K, V>> receiveAtmostOnce() {
@Override
public Flux<Flux<ConsumerRecord<K, V>>> receiveExactlyOnce(
TransactionManager transactionManager) {
return actual.receiveAutoAck().map(InstrumentedKafkaReceiver::wrap);
return actual.receiveExactlyOnce(transactionManager).map(InstrumentedKafkaReceiver::wrap);
}

// added in 1.3.3
Expand Down

0 comments on commit e562e59

Please sign in to comment.