Skip to content

Commit

Permalink
Fix signature of Producer#produceAll (#993)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirkl authored Jul 22, 2023
1 parent 367e621 commit 709729d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zio-kafka/src/main/scala/zio/kafka/producer/Producer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ trait Producer {
def produceAll[R, K, V](
keySerializer: Serializer[R, K],
valueSerializer: Serializer[R, V]
): ZPipeline[R & Producer, Throwable, ProducerRecord[K, V], RecordMetadata] =
): ZPipeline[R, Throwable, ProducerRecord[K, V], RecordMetadata] =
ZPipeline.mapChunksZIO(records => produceChunk(records, keySerializer, valueSerializer))

/**
Expand Down

0 comments on commit 709729d

Please sign in to comment.