Update to credential factory.
This commit is contained in:
César Zaragoza Cortés 2022-07-18 11:49:33 -07:00 коммит произвёл GitHub
Родитель bd22f3ea09
Коммит 41805fa43c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -88,7 +88,8 @@ namespace Microsoft.Azure.Quantum.Authentication
public static class CredentialFactory
{
// Used to fetch the tenantId automatically from ARM
private static readonly HttpClient Client = new HttpClient();
private static readonly HttpClient Client = new HttpClient(
new HttpClientHandler(){CheckCertificateRevocationList = true});
// Used to catch all the TenantIds:
private static readonly Dictionary<string, string?> TenantIds = new Dictionary<string, string?>();