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/KafkaAutoConfiguration.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2012-2023 the original author or authors.
2
+
* Copyright 2012-2024 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaProperties.java
+1-24Lines changed: 1 addition & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -1548,28 +1548,6 @@ public static class Topic {
1548
1548
*/
1549
1549
privateintattempts = 3;
1550
1550
1551
-
/**
1552
-
* Canonical backoff period. Used as an initial value in the exponential case,
1553
-
* and as a minimum value in the uniform case.
1554
-
*/
1555
-
privateDurationdelay = Duration.ofSeconds(1);
1556
-
1557
-
/**
1558
-
* Multiplier to use for generating the next backoff delay.
1559
-
*/
1560
-
privatedoublemultiplier = 0.0;
1561
-
1562
-
/**
1563
-
* Maximum wait between retries. If less than the delay then the default of 30
1564
-
* seconds is applied.
1565
-
*/
1566
-
privateDurationmaxDelay = Duration.ZERO;
1567
-
1568
-
/**
1569
-
* Whether to have the backoff delays.
1570
-
*/
1571
-
privatebooleanrandomBackOff = false;
1572
-
1573
1551
publicbooleanisEnabled() {
1574
1552
returnthis.enabled;
1575
1553
}
@@ -1620,8 +1598,7 @@ public void setMaxDelay(Duration maxDelay) {
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