Skip to content

Commit 0296f33

Browse files
committed
put IsHandshake onto public API
1 parent 8ba2f75 commit 0296f33

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/StackExchange.Redis/ClusterConfiguration.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -381,10 +381,8 @@ public IList<ClusterNode> Children
381381
/// <summary>
382382
/// The handshake flag is set for nodes which are currently in the process of joining the cluster.
383383
/// They might not be fully configured, node IDs and slot ranges are placeholder information, and endpoint details 'best guess'.
384-
/// We use this property only to filter out handshake nodes when building the configuration,
385-
/// since they may be unusable, so it is not made public for now.
386384
/// </summary>
387-
internal bool IsHandshake { get; }
385+
public bool IsHandshake { get; }
388386

389387
/// <summary>
390388
/// Gets whether this node is a replica.

src/StackExchange.Redis/PublicAPI/PublicAPI.Shipped.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ StackExchange.Redis.ClusterNode.EndPoint.get -> System.Net.EndPoint?
165165
StackExchange.Redis.ClusterNode.Equals(StackExchange.Redis.ClusterNode? other) -> bool
166166
StackExchange.Redis.ClusterNode.IsConnected.get -> bool
167167
StackExchange.Redis.ClusterNode.IsFail.get -> bool
168+
StackExchange.Redis.ClusterNode.IsHandshake.get -> bool
168169
StackExchange.Redis.ClusterNode.IsMyself.get -> bool
169170
StackExchange.Redis.ClusterNode.IsNoAddr.get -> bool
170171
StackExchange.Redis.ClusterNode.IsPossiblyFail.get -> bool

0 commit comments

Comments
 (0)