Replies: 1 comment
-
Your "operationB" isn't being run inside the scope that's created with the baggage in it, so you won't see it there. operationA doesn't propagate the context with the baggage in it in any way that would be accessible to operationB. Trace through the call stacks by hand and you'll see what I mean. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a Spring Boot application where I need to call operationA.process() and operationB.process() sequentially. When I set baggage in OperationA, I do not see the changes in OperationB.
OperationA: Added 'param1' to the baggage.
OperationB: Retrieved 'param1' from the baggage, but the value is null.
Beta Was this translation helpful? Give feedback.
All reactions