You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/ConcurrentKafkaListenerContainerFactoryConfigurer.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaProperties.java
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -873,6 +873,11 @@ public enum Type {
873
873
*/
874
874
privateBooleanlogContainerConfig;
875
875
876
+
/**
877
+
* Set to false to disable checking that topic(s) exist.
878
+
*/
879
+
privateBooleanmissingTopicsFatal;
880
+
876
881
publicTypegetType() {
877
882
returnthis.type;
878
883
}
@@ -961,6 +966,14 @@ public void setLogContainerConfig(Boolean logContainerConfig) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/kafka/KafkaAutoConfigurationTests.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -457,6 +457,7 @@ public void listenerProperties() {
0 commit comments