Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deserialization hangs when there is additional repeated list in payload #49

Closed
Havret opened this issue Jun 22, 2022 · 0 comments · Fixed by #50
Closed

Deserialization hangs when there is additional repeated list in payload #49

Havret opened this issue Jun 22, 2022 · 0 comments · Fixed by #50
Labels
bug Something isn't working

Comments

@Havret
Copy link
Owner

Havret commented Jun 22, 2022

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:

  • Version: [1.0.2]

Additional context

It only happens when additional property is of repeated list and when I try to deserialize the array of problematic messages.

@Havret Havret added the bug Something isn't working label Jun 22, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant