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
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -873,6 +873,12 @@ public enum Type {
873
873
*/
874
874
privateBooleanlogContainerConfig;
875
875
876
+
/**
877
+
* Whether the container should fail to start if at least one of the configured
878
+
* topics are not present on the broker.
879
+
*/
880
+
privatebooleanmissingTopicsFatal = true;
881
+
876
882
publicTypegetType() {
877
883
returnthis.type;
878
884
}
@@ -961,6 +967,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
0 commit comments