Skip to content

Commit

Permalink
check tls 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-mhofman committed Feb 20, 2024
1 parent 3d90e7f commit 5a1ce76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Snowflake.Data/Core/HttpUtil.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ internal HttpMessageHandler SetupCustomHttpHandler(HttpClientConfig config)
// Verify no certificates have been revoked
CheckCertificateRevocationList = config.CrlCheckEnabled,
// Enforce tls v1.2
SslProtocols = SslProtocols.Tls12,
SslProtocols = SslProtocols.Tls13,

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net471, AZURE)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net471, AZURE)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net472, AZURE)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net472, AZURE)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net472, GCP)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net472, GCP)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net471, GCP)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net471, GCP)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net471, AWS)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net471, AWS)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net472, AWS)

'SslProtocols' does not contain a definition for 'Tls13'

Check failure on line 142 in Snowflake.Data/Core/HttpUtil.cs

View workflow job for this annotation

GitHub Actions / Tests on Windows (net472, AWS)

'SslProtocols' does not contain a definition for 'Tls13'
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate,
UseCookies = false, // Disable cookies
UseProxy = false
Expand Down

0 comments on commit 5a1ce76

Please sign in to comment.