kafka-ui
kafka-ui copied to clipboard
[Bug] Clicking 'produce message' on some avro-schemed topics breaks
Describe the bug
Clicking 'produce message' on some avro-schemed topics produces 502.
Set up docker, latest master
Steps to Reproduce Steps to reproduce the behavior:
- set up reddit connector
- go to topic reddit-posts-avro
- click 'produce message'
- ???
- PROFIT
Expected behavior should work fine
Screenshots
Additional context
error occurs when converting recursive avro schema to json schema (stackoverflow in AvroJsonSchemaConverter) example failing schema
{
"type": "record",
"name": "Anything",
"namespace": "io.confluent.connect.avro",
"fields": [
{
"name": "somekey",
"type": "string"
},
{
"name": "recursion",
"type": "Anything"
}
]
}