We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2acbb9 commit 6aa2299Copy full SHA for 6aa2299
src/Hosting/Hosting/src/Internal/HostingApplicationDiagnostics.cs
@@ -307,6 +307,8 @@ private static void RecordRequestStartEventLog(HttpContext httpContext)
307
fieldValue = headers[fieldName];
308
});
309
310
+ // 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
311
+ // By contract, the propagator has already reversed the order of items so we need not reverse it again
312
// Order could be important if baggage has two items with the same key (that is allowed by the contract)
313
if (baggage is not null)
314
{
0 commit comments