Skip to content

Commit

Permalink
Fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
apoorvmittal10 committed Mar 9, 2023
1 parent 40c383f commit 5cd8619
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public final class DefaultKafkaRestTestEnvironment
.addSuperUser("schema-registry")
.setCertificates(certificates, "kafka-1", "kafka-2", "kafka-3")
.setConfig("ssl.client.auth", "required")
.setConfig("message.max.bytes", String.valueOf((2<<20) * 10))
.setConfig("message.max.bytes", String.valueOf((2 << 20) * 10))
.setNumBrokers(3)
.setSecurityProtocol(SecurityProtocol.SASL_SSL)
.setZookeeper(zookeeper)
Expand All @@ -60,7 +60,7 @@ public final class DefaultKafkaRestTestEnvironment
.setCertificates(certificates, "kafka-rest")
.setConfig("producer.max.block.ms", "5000")
.setConfig("ssl.client.authentication", "REQUIRED")
.setConfig("producer.max.request.size", String.valueOf((2<<20) * 10))
.setConfig("producer.max.request.size", String.valueOf((2 << 20) * 10))
.setKafkaCluster(kafkaCluster)
.setKafkaUser("kafka-rest", "kafka-rest-pass")
.setSchemaRegistry(schemaRegistry)
Expand Down

0 comments on commit 5cd8619

Please sign in to comment.