You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fall back to TLSv1.2 when System.Security.Authentication.SslProtocols.None is disabled/unavailable
See #764 for background. In some environments we cannot assume
that SslProtocols.None will behave as expected:
* It can be disabled via app context and other means
* Its effective behavior is different between .NET versions according
to .NET community blog posts and GitHub issues
So we borrow from [1] and special case this exception to retry with an
explicitly defined version (TLSv1.2, same as modern .NET default).
The discussion in [2] should also be mentioned as they have lead us
to understanding of many aspects of this intricate setting.
1. mysql-net/MySqlConnector@715c3b5
2. robinrodricks/FluentFTP#452 (comment)
0 commit comments