Is your feature request related to a problem? Please describe.
The Quarkus Kafka Streams extension use different properties to configure e.g. Kafka bootstrap servers. We would like to use MST to test Kafka Streams applications. Without the correct settings the Kafka Streams application can't be bootstrapped.
https://quarkus.io/guides/kafka-streams#configuration-reference
Describe the solution you'd like
My quick and dirty solution was to simply add the proper property to QuarkusConfiguration.java:
System.setProperty("quarkus.kafka-streams.bootstrap-servers", bootstrapServers);
|
System.setProperty(KAFKA_PROP, bootstrapServers); |
Additional context
- OS: macOS 10.15.3
- Java Version: 11
- MicroShed Testing Version: 0.8.1-SNAPSHOT
- Qarkus 1.3.2.Final
Is your feature request related to a problem? Please describe.
The Quarkus Kafka Streams extension use different properties to configure e.g. Kafka bootstrap servers. We would like to use MST to test Kafka Streams applications. Without the correct settings the Kafka Streams application can't be bootstrapped.
https://quarkus.io/guides/kafka-streams#configuration-reference
Describe the solution you'd like
My quick and dirty solution was to simply add the proper property to QuarkusConfiguration.java:
System.setProperty("quarkus.kafka-streams.bootstrap-servers", bootstrapServers);microshed-testing/modules/quarkus/src/main/java/org/microshed/testing/quarkus/QuarkusConfiguration.java
Line 189 in b2338ed
Additional context