Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Within `StreamsConfig.java`, DEFAULT_KEY_SERDE_CLASS_CONFIG will default to null and DEFAULT_VALUE_SERDE_CLASS_CONFIG will default to null. That means that the following existing methods will return `null` if no default is set, whereas before they returned byte array.

Code Block
languagejava
titleStreamsConfig
// Will return null if no default is set through configs
public Serde defaultKeySerde() {
}

// Will return null if no default is set through configs
 public Serde defaultValueSerde() {
}

...