Skip to content

Commit d65b6aa

Browse files
tintoybrendandburns
authored andcommitted
KubernetesWebSocketOptions.EnabledSslProtocols now defaults to None. (#113)
This lets the the local platform select the most appropriate protocol. #112
1 parent 4f01fd3 commit d65b6aa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/WebSocketBuilder.NetCoreApp2.1.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,10 @@ public KubernetesWebSocketOptions()
133133
/// <summary>
134134
/// An <see cref="SslProtocols"/> value representing the SSL protocols that the client supports.
135135
/// </summary>
136-
public SslProtocols EnabledSslProtocols { get; set; } = SslProtocols.Tls;
136+
/// <remarks>
137+
/// Defaults to <see cref="SslProtocols.None"/>, which lets the platform select the most appropriate protocol.
138+
/// </remarks>
139+
public SslProtocols EnabledSslProtocols { get; set; } = SslProtocols.None;
137140

138141
/// <summary>
139142
/// The WebSocket keep-alive interval.

0 commit comments

Comments
 (0)