Skip to content

Commit

Permalink
review3
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pcyrek committed Jan 30, 2025
1 parent 5d8b334 commit 1d01960
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
using Newtonsoft.Json.Linq;
using NUnit.Framework;
using System.IO;
using System.Net;
using Snowflake.Data.Core;
using System.Net.Http;
using System.Security.Authentication;

namespace Snowflake.Data.AuthenticationTests

Expand Down Expand Up @@ -114,6 +116,10 @@ public static string GetOauthToken()
{
using (var client = new HttpClient(new HttpClientHandler
{
CheckCertificateRevocationList = true,
SslProtocols = SslProtocols.Tls12,
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate,
UseProxy = false,
UseCookies = false
}))
{
Expand Down

0 comments on commit 1d01960

Please sign in to comment.