mjsax commented on code in PR #20403:
URL: https://github.com/apache/kafka/pull/20403#discussion_r2404147727


##########
streams/src/test/java/org/apache/kafka/streams/processor/internals/ProcessorTopologyTest.java:
##########
@@ -867,6 +867,27 @@ public void 
testDrivingInternalRepartitioningForwardingTimestampTopology() {
                 equalTo(new TestRecord<>("key3", "value3", null, 3000L)));
     }
 
+
+    @Test
+    public void testTopologyInitializationWithInitialKeyAndValue() {
+        final String initialKey = "key1";
+        final String initialValue = "value1";
+        final StoreBuilder<KeyValueStore<String, String>> storeBuilder =
+                
Stores.keyValueStoreBuilder(Stores.inMemoryKeyValueStore(DEFAULT_STORE_NAME), 
Serdes.String(), Serdes.String()).withLoggingEnabled(Collections.emptyMap());

Review Comment:
   Nit: I think we can omit `withLoggingEnabled()` -- should be enable by 
default?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to