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
There are cases in a Kafka key, for example, that is a simple {"type": "string"} rather than a record. It would still be helpful to use the MessageSerializer. However, it doesn't permit non-dict's because of this check
if not isinstance(record, dict):
raise SerializerError("record must be a dictionary")
Any reason for this? Can it be removed?
Thanks.
The text was updated successfully, but these errors were encountered:
There are cases in a Kafka key, for example, that is a simple
{"type": "string"}
rather than a record. It would still be helpful to use the MessageSerializer. However, it doesn't permit non-dict's because of this checkAny reason for this? Can it be removed?
Thanks.
The text was updated successfully, but these errors were encountered: