fix(kafka-setup): remove default to enable topicDefaults to be used (#14738)

This commit is contained in:
Chakru 2025-09-11 22:08:11 +05:30 committed by GitHub
parent 3af386b626
commit ac80e8171b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -69,7 +69,7 @@ public class TopicsConfiguration {
public static class TopicConfiguration {
private String name;
private Integer partitions;
private Integer replicationFactor = 1;
private Integer replicationFactor;
private Map<String, String> configProperties;
private Boolean enabled = true; // Default to true if not specified
}