Skip to content

Commit

Permalink
Fix compilation test
Browse files Browse the repository at this point in the history
  • Loading branch information
aartigao committed Oct 8, 2024
1 parent 714550e commit 2fd5895
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import fs2.kafka.internal.converters.collection.*
import fs2.kafka.producer.MkProducer

import org.apache.kafka.clients.consumer.{ConsumerConfig, ConsumerGroupMetadata, OffsetAndMetadata}
import org.apache.kafka.clients.producer
import org.apache.kafka.clients.producer.{Callback, ProducerConfig, RecordMetadata}
import org.apache.kafka.common.errors.ProducerFencedException
import org.apache.kafka.common.serialization.ByteArraySerializer
Expand Down Expand Up @@ -425,7 +424,7 @@ class TransactionalKafkaProducerSpec extends BaseKafkaSpec with EitherValues {
new ByteArraySerializer
) {
override def send(
record: producer.ProducerRecord[Array[Byte], Array[Byte]],
record: org.apache.kafka.clients.producer.ProducerRecord[Array[Byte], Array[Byte]],
callback: Callback
): Future[RecordMetadata] = {
val key = new String(record.key(), StandardCharsets.UTF_8)
Expand Down

0 comments on commit 2fd5895

Please sign in to comment.