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
Fixes: #652
Kafka Streams `ChangedSerializer` calls the `Serde` with `null` in `headers`.
**cherry-pick to 2.1.x, 2.0.x, 1.3.x**
(cherry picked from commit ad28b91)
Copy file name to clipboardExpand all lines: src/reference/asciidoc/kafka.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1433,7 +1433,7 @@ You can also extend them to implement some particular configuration logic in the
1433
1433
Starting with _version 2.1_, type information can be conveyed in record `Headers`, allowing the handling of multiple types.
1434
1434
In addition, the serializer/deserializer can be configured using Kafka properties.
1435
1435
1436
-
- `JsonSerializer.ADD_TYPE_INFO_HEADERS` (default `true`); set to `false` to disable this feature.
1436
+
- `JsonSerializer.ADD_TYPE_INFO_HEADERS` (default `true`); set to `false` to disable this feature on the `JsonSerializer` (sets the `addTypeInfo` property).
1437
1437
- `JsonDeserializer.KEY_DEFAULT_TYPE`; fallback type for deserialization of keys if no header information is present.
1438
1438
- `JsonDeserializer.VALUE_DEFAULT_TYPE`; fallback type for deserialization of values if no header information is present.
1439
1439
- `JsonDeserializer.TRUSTED_PACKAGES` (default `java.util`, `java.lang`); comma-delimited list of package patterns allowed for deserialization; `*` means deserialize all.
0 commit comments