mimaison commented on code in PR #12544: URL: https://github.com/apache/kafka/pull/12544#discussion_r1015686984
########## connect/runtime/src/main/java/org/apache/kafka/connect/storage/KafkaConfigBackingStore.java: ########## @@ -289,15 +292,16 @@ public static String RESTART_KEY(String connectorName) { @Deprecated public KafkaConfigBackingStore(Converter converter, DistributedConfig config, WorkerConfigTransformer configTransformer) { - this(converter, config, configTransformer, null); + this(converter, config, configTransformer, null, "connect-distributed"); Review Comment: Should this be `connect-distributed-`? ########## connect/runtime/src/main/java/org/apache/kafka/connect/storage/KafkaStatusBackingStore.java: ########## @@ -139,16 +141,17 @@ public class KafkaStatusBackingStore implements StatusBackingStore { @Deprecated public KafkaStatusBackingStore(Time time, Converter converter) { - this(time, converter, null); + this(time, converter, null, "connect-distributed"); Review Comment: Should this be `connect-distributed-`? -- 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