From: Kai Moritz Date: Wed, 5 Jun 2024 19:44:26 +0000 (+0200) Subject: counter: 1.3.0 - (RED) Made `CounterApplicationIT` fail too X-Git-Tag: popular-on-counter~6 X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=19226e74f738681af8f4d6a574cf9e69eae1da90;p=demos%2Fkafka%2Fwordcount counter: 1.3.0 - (RED) Made `CounterApplicationIT` fail too * Validate with: `mvn test -Dtest=CounterApplicationI` * Turning on the caching forces the application, to serialize and deserialize _every_ message, hence, revealing the bug, that was only detected by the `CounterStreamProcessorToplogyTest` before, that always behaves like this. --- diff --git a/src/test/java/de/juplo/kafka/wordcount/counter/CounterApplicationIT.java b/src/test/java/de/juplo/kafka/wordcount/counter/CounterApplicationIT.java index 1bfceed..334cd05 100644 --- a/src/test/java/de/juplo/kafka/wordcount/counter/CounterApplicationIT.java +++ b/src/test/java/de/juplo/kafka/wordcount/counter/CounterApplicationIT.java @@ -46,7 +46,6 @@ import static org.awaitility.Awaitility.await; "logging.level.de.juplo=DEBUG", "juplo.wordcount.counter.bootstrap-server=${spring.embedded.kafka.brokers}", "juplo.wordcount.counter.commit-interval=0", - "juplo.wordcount.counter.cacheMaxBytes=0", "juplo.wordcount.counter.input-topic=" + TOPIC_IN, "juplo.wordcount.counter.output-topic=" + TOPIC_OUT }) @EmbeddedKafka(topics = { TOPIC_IN, TOPIC_OUT })