nlu90 commented on issue #18501:
URL: https://github.com/apache/pulsar/issues/18501#issuecomment-1322743840
Hi @trojczak
The issue is due to the difference in the field `name` in your example.
In your asvc file, you write:
```
{
"name" : "name",
"type" : "string"
}
```
While in the pulsar-generated schema based on the `Person` class, it's
```
{
"name" : "name",
"type" : [ "null", "string" ],
"default" : null
}
```
Could you change your asvc file to make them match? Or there's a specific
reason you don't want to make the change?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]