From 647575128ad21f988694f6e7544551c34c8190be Mon Sep 17 00:00:00 2001 From: BovineOx <73857041+BovineOx@users.noreply.github.com> Date: Thu, 26 Oct 2023 17:28:30 +0100 Subject: [PATCH] Suppress CRL checking (#3005) Suppress CRL checking for clients using SpeckleHttpClientHandler Co-authored-by: Ian Hawley --- Core/Core/Helpers/Http.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Core/Helpers/Http.cs b/Core/Core/Helpers/Http.cs index 58eaf08ba0..ce096122bb 100644 --- a/Core/Core/Helpers/Http.cs +++ b/Core/Core/Helpers/Http.cs @@ -214,7 +214,7 @@ public class SpeckleHttpClientHandler : HttpClientHandler public SpeckleHttpClientHandler(IEnumerable? delay = null) { _delay = delay ?? Http.DefaultDelay(); - CheckCertificateRevocationList = true; + CheckCertificateRevocationList = false; } protected override async Task SendAsync(