KubernetesWebSocketOptions.EnabledSslProtocols now defaults to None. (#113)
This lets the the local platform select the most appropriate protocol. kubernetes-client/csharp#112
This commit is contained in:
committed by
Brendan Burns
parent
4f01fd38ef
commit
d65b6aaf66
@@ -133,7 +133,10 @@ namespace k8s
|
||||
/// <summary>
|
||||
/// An <see cref="SslProtocols"/> value representing the SSL protocols that the client supports.
|
||||
/// </summary>
|
||||
public SslProtocols EnabledSslProtocols { get; set; } = SslProtocols.Tls;
|
||||
/// <remarks>
|
||||
/// Defaults to <see cref="SslProtocols.None"/>, which lets the platform select the most appropriate protocol.
|
||||
/// </remarks>
|
||||
public SslProtocols EnabledSslProtocols { get; set; } = SslProtocols.None;
|
||||
|
||||
/// <summary>
|
||||
/// The WebSocket keep-alive interval.
|
||||
|
||||
Reference in New Issue
Block a user