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
Hey,
I'm generating Avro Schema for POJO that uses inner classes and because of that namespace field contains $, which is a character not allowed by Avro schema. I think substituting that with . is a good way to solve the issue.
Hey,
I'm generating Avro Schema for POJO that uses inner classes and because of that namespace field contains $, which is a character not allowed by Avro schema. I think substituting that with
.
is a good way to solve the issue.{ "type" : "record", "name" : "TestImpl", "namespace" : "package.Test$", "fields" : [ ...] }
Thank you,
The text was updated successfully, but these errors were encountered: