Skip to content

Commit

Permalink
Remove option to use default credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Norman committed Mar 29, 2019
1 parent 8055175 commit bb58d7a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Raygun.Druid4Net/Query/Requester.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ private HttpClient CreateClientWithProxyServer(ConfigurationOptions options)
var webProxy = new WebProxy
{
Address = options.ProxySettings.Address,
BypassProxyOnLocal = options.ProxySettings.BypassOnLocal,
UseDefaultCredentials = true
BypassProxyOnLocal = options.ProxySettings.BypassOnLocal
};

if (!string.IsNullOrEmpty(options.ProxySettings.Username) && !string.IsNullOrEmpty(options.ProxySettings.Password))
Expand Down

0 comments on commit bb58d7a

Please sign in to comment.