From 19226e74f738681af8f4d6a574cf9e69eae1da90 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Wed, 5 Jun 2024 21:44:26 +0200 Subject: [PATCH] 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. --- .../de/juplo/kafka/wordcount/counter/CounterApplicationIT.java | 1 - 1 file changed, 1 deletion(-) 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 }) -- 2.20.1