Skip to content

Commit

Permalink
Compatibility with deprecated method removal
Browse files Browse the repository at this point in the history
  • Loading branch information
normanma-tw committed Dec 4, 2024
1 parent 3502493 commit 140037d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.github.spotbugs.snom.Effort

buildscript {
if (!project.hasProperty("springBootVersion")) {
ext.springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.4.0"
ext.springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.3.1"
}
dependencies {
classpath "com.avast.gradle:gradle-docker-compose-plugin:0.17.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class SpringKafkaConsumerPropertiesProvider implements IKafkaListenerCons

@Override
public Map<String, Object> getProperties(int shard) {
var props = kafkaProperties.buildConsumerProperties();
var props = kafkaProperties.buildConsumerProperties(null);

try {
var kafkaClientsVersion = new Semver(AppInfoParser.getVersion());
Expand Down

0 comments on commit 140037d

Please sign in to comment.