Skip to content

Commit

Permalink
Merge pull request #842 from scala-steward/update/series/3.x/kafka-cl…
Browse files Browse the repository at this point in the history
…ients-3.1.0

Update kafka-clients to 3.1.0 in series/3.x
  • Loading branch information
bplommer authored Mar 9, 2022
2 parents 0dd576b + d5a1b5f commit b5a938a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ val confluentVersion = "7.0.1"

val fs2Version = "3.2.5"

val kafkaVersion = "3.0.0"
val kafkaVersion = "3.1.0"

val testcontainersScalaVersion = "0.40.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ object KafkaAdminClient {
withAdminClient: WithAdminClient[F],
topics: G[String]
)(implicit G: Foldable[G]): F[Map[String, TopicDescription]] =
withAdminClient(_.describeTopics(topics.asJava).all.map(_.toMap))
withAdminClient(_.describeTopics(topics.asJava).allTopicNames.map(_.toMap))

private[this] def describeAclsWith[F[_]](
withAdminClient: WithAdminClient[F],
Expand Down

0 comments on commit b5a938a

Please sign in to comment.