Describe the bug
Attempt to deserialize payload:
[
{
"property1": 1,
"property2": [
2,
3
]
}
]
For proto
message SchemaEvolutionV1 {
int32 property_1 = 1;
}
Never completes. The process just hangs there.
Expected behavior
The payload should be deserialized without a problem. Additional property should be simply omitted.
Environment:
Additional context
It only happens when additional property is of repeated list and when I try to deserialize the array of problematic messages.
Describe the bug
Attempt to deserialize payload:
[ { "property1": 1, "property2": [ 2, 3 ] } ]For proto
Never completes. The process just hangs there.
Expected behavior
The payload should be deserialized without a problem. Additional property should be simply omitted.
Environment:
Additional context
It only happens when additional property is of repeated list and when I try to deserialize the array of problematic messages.