React to StringSegment changes

This commit is contained in:
Chris R 2017-05-19 07:14:14 -07:00
parent 7ac6842d18
commit 419ec53d07
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ namespace Microsoft.AspNetCore.Hosting.Internal
{
if (NameValueHeaderValue.TryParse(item, out var baggageItem))
{
activity.AddBaggage(baggageItem.Name, baggageItem.Value);
activity.AddBaggage(baggageItem.Name.ToString(), baggageItem.Value.ToString());
}
}
}