Skip to content

Commit

Permalink
Reactor kafka wrapper delegates to wrong method (#10333)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit authored Jan 29, 2024
1 parent 01a2f35 commit bc034f3
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 bc034f3

Please sign in to comment.