We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When a value of the following struct is sent to server and Callback is a valid dnode.Function value, server correctly scrubs the value:
type Req struct { Callback dnode.Function }
However if client sends a value of the following type:
type WrappedReq struct { Req }
With a valid Callback field, the very same field is incorrectly unmarshaled / scrubbed server-side, thus rendering the callback unusable.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When a value of the following struct is sent to server and Callback is a valid dnode.Function value, server correctly scrubs the value:
However if client sends a value of the following type:
With a valid Callback field, the very same field is incorrectly unmarshaled / scrubbed server-side, thus rendering the callback unusable.
The text was updated successfully, but these errors were encountered: