Skip to content

Commit

Permalink
Revert "Suppress CRL checking" (#3007)
Browse files Browse the repository at this point in the history
Revert "Suppress CRL checking (#3005)"

This reverts commit 6475751.
  • Loading branch information
teocomi authored Oct 30, 2023
1 parent 6475751 commit 573eedb
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 = false;
CheckCertificateRevocationList = true;
}

protected override async Task<HttpResponseMessage> SendAsync(
Expand Down

0 comments on commit 573eedb

Please sign in to comment.