Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Kafka 3.7 #96

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -322,14 +322,16 @@ protected <K, V> TestTopology<K, V> with(
* Get the default serde of the key type in your application.
*/
private Serde<DefaultK> getDefaultKeySerde() {
return this.defaultKeySerde != null ? this.defaultKeySerde : this.getStreamsConfig().defaultKeySerde();
return this.defaultKeySerde != null ? this.defaultKeySerde
: (Serde<DefaultK>) this.getStreamsConfig().defaultKeySerde();
}

/**
* Get the default serde of the value type in your application.
*/
private Serde<DefaultV> getDefaultValueSerde() {
return this.defaultValueSerde != null ? this.defaultValueSerde : this.getStreamsConfig().defaultValueSerde();
return this.defaultValueSerde != null ? this.defaultValueSerde
: (Serde<DefaultV>) this.getStreamsConfig().defaultValueSerde();
}

/**
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.caching=true
org.gradle.parallel=true
junit5Version=5.10.2
junit4Version=4.13.2
confluentVersion=7.6.0
kafkaVersion=3.6.1
log4jVersion=2.23.0
confluentVersion=7.7.0
kafkaVersion=3.7.1
log4jVersion=2.23.1
org.gradle.jvmargs=-Xmx2048m
Loading