-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Preserve client order of activity baggage items #26302
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Preserve client order of activity baggage items #26302
Conversation
AddBaggage adds items at the beginning of the list, so we need to add them in reverse to keep the same order as the client An order could be important if baggage has two items with the same key (that is allowed by the contract)
Test failure:
|
Sorry, I forgot to mention. |
@shirhatti @davidfowl @Pilchie is this a 5.0 candidate? It looks like the runtime PR was backported to 5.0. |
This is broken in 3.x as well no? |
…b.com/AndreyTretyak/aspnetcore into andreyt/change-activity-baggage-order
So |
As far as I understand you are quite close to the 5.0 release, but in case if for some reason you're still considering including this fix I'll add some details why it's more important before Currently, the only way of changing
|
I don't see folks pushing to get this into 5.0 so it's been merged into master for 6.0. |
Okay, thanks, do I need to do something with the bug attached or it's up to you? |
We should create a breaking change announcement for this behavior change |
AddBaggage in reverse order to be the same as on the client
Addresses #26303