Skip to content

Commit

Permalink
Suppress CRL checking (#3005)
Browse files Browse the repository at this point in the history
Suppress CRL checking for clients using SpeckleHttpClientHandler

Co-authored-by: Ian Hawley <[email protected]>
  • Loading branch information
BovineOx and BovineOx authored Oct 26, 2023
1 parent bd36417 commit 6475751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Core/Helpers/Http.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public class SpeckleHttpClientHandler : HttpClientHandler
public SpeckleHttpClientHandler(IEnumerable<TimeSpan>? delay = null)
{
_delay = delay ?? Http.DefaultDelay();
CheckCertificateRevocationList = true;
CheckCertificateRevocationList = false;
}

protected override async Task<HttpResponseMessage> SendAsync(
Expand Down

0 comments on commit 6475751

Please sign in to comment.