Upgrade to Spring Kafka 2.7.0-M1

Closes gh-24592
This commit is contained in:
Andy Wilkinson 2021-01-21 13:21:44 +00:00
parent dff64302b5
commit c125e0ee35
3 changed files with 3 additions and 3 deletions

View File

@ -917,7 +917,7 @@ public class KafkaProperties {
* Whether to suppress the entire record from being written to the log when
* retries are being attempted.
*/
private boolean onlyLogRecordMetadata;
private boolean onlyLogRecordMetadata = true;
/**
* Whether the container should fail to start if at least one of the configured

View File

@ -700,7 +700,7 @@ class KafkaAutoConfigurationTests {
@Bean
AfterRollbackProcessor<Object, Object> afterRollbackProcessor() {
return (records, consumer, ex, recoverable) -> {
return (records, consumer, ex, recoverable, eosMode) -> {
// no-op
};
}

View File

@ -1578,7 +1578,7 @@ bom {
]
}
}
library("Spring Kafka", "2.6.4") {
library("Spring Kafka", "2.7.0-M1") {
group("org.springframework.kafka") {
modules = [
"spring-kafka",