Skip to content

Commit

Permalink
Increase timeout for kafka topic creation (#5909)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit authored Apr 22, 2022
1 parent 2bb7873 commit a46e674
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ abstract class KafkaClientBaseTest extends InstrumentationSpecification {

// create test topic
AdminClient.create(["bootstrap.servers": kafka.bootstrapServers]).withCloseable { admin ->
admin.createTopics([new NewTopic(SHARED_TOPIC, 1, (short) 1)]).all().get(10, TimeUnit.SECONDS)
admin.createTopics([new NewTopic(SHARED_TOPIC, 1, (short) 1)]).all().get(30, TimeUnit.SECONDS)
}

producer = new KafkaProducer<>(producerProps())
Expand Down

0 comments on commit a46e674

Please sign in to comment.