sebastienviale commented on code in PR #18233:
URL: https://github.com/apache/kafka/pull/18233#discussion_r1937350055


##########
streams/src/main/java/org/apache/kafka/streams/StreamsBuilder.java:
##########
@@ -384,7 +384,7 @@ public synchronized <K, V> GlobalKTable<K, V> 
globalTable(final String topic,
 
         final MaterializedInternal<K, V, KeyValueStore<Bytes, byte[]>> 
materializedInternal =
             new MaterializedInternal<>(
-                Materialized.with(consumedInternal.keySerde(), 
consumedInternal.valueSerde()),
+                Materialized.<K, V, KeyValueStore<Bytes, 
byte[]>>with(consumedInternal.keySerde(), 
consumedInternal.valueSerde()).withLoggingDisabled(),

Review Comment:
   For a GlobalKTable logging is always disable, I have to specify it here 
otherwise a changelog topic will be added as a not named internal resource:
   
   
https://github.com/sebastienviale/kafka/blob/a8790a02ff1f1de7d387b1cdaf9b93b349e6403e/streams/src/main/java/org/apache/kafka/streams/kstream/internals/MaterializedInternal.java#L54-L64
   
   what do you think ?



-- 
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: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to