Skip to content

Commit cccf1ec

Browse files
fix incorrect as usage in MessageReceiver (#6105)
Co-authored-by: Rajkumar Rangaraj <[email protected]>
1 parent 0cfbf86 commit cccf1ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/MicroserviceExample/Utils/Messaging/MessageReceiver.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private IEnumerable<string> ExtractTraceContextFromBasicProperties(IBasicPropert
7575
{
7676
if (props.Headers.TryGetValue(key, out var value))
7777
{
78-
var bytes = value as byte[];
78+
var bytes = (byte[])value;
7979
return new[] { Encoding.UTF8.GetString(bytes) };
8080
}
8181
}

0 commit comments

Comments
 (0)