Skip to content
This repository has been archived by the owner on Apr 28, 2022. It is now read-only.

Commit

Permalink
Changed authorization header key to be the standard 'Authorization', …
Browse files Browse the repository at this point in the history
…otherwise, it does not work (#114)

Signed-off-by: Andres Mendoza <[email protected]>
  • Loading branch information
jamendozag authored and Falco20019 committed Oct 27, 2018
1 parent 4d87fad commit 912a4b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jaeger/Senders/HttpSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private HttpSender(Builder builder)
var customHeaders = new Dictionary<string, string>();
if (builder.AuthenticationHeaderValue != null)
{
customHeaders.Add("Authorize", builder.AuthenticationHeaderValue.ToString());
customHeaders.Add("Authorization", builder.AuthenticationHeaderValue.ToString());
}

_transport = new THttpClientTransport(collectorUri, customHeaders);
Expand Down

0 comments on commit 912a4b7

Please sign in to comment.