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
Is your feature request related to a problem? Please describe.
Yes, sometimes users may serialize some Java bean, which may be instrumented by OpenTelemetry Java Agent. Java Agent may insert an extra field through VirtualField, and it will led to a serialization failure.
Describe the solution you'd like
Make the extra field inserted by virtualfield a transient field and Java will ignore such transient field while doing serialization
Describe alternatives you've considered
No
Additional context
No response
The text was updated successfully, but these errors were encountered:
Or can we mark the AsyncListenerResponse as a virtual field of request rather than putting it into request's attribute map since the virtual field is transient
@123liuziming, just in case you were looking into this after our discussion in last week's APAC meeting, wanted to give you a heads up that it looks like @laurit may be exploring options for this in #13493
Is your feature request related to a problem? Please describe.
Yes, sometimes users may serialize some Java bean, which may be instrumented by OpenTelemetry Java Agent. Java Agent may insert an extra field through
VirtualField
, and it will led to a serialization failure.Describe the solution you'd like
Make the extra field inserted by virtualfield a transient field and Java will ignore such transient field while doing serialization
Describe alternatives you've considered
No
Additional context
No response
The text was updated successfully, but these errors were encountered: