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
Filter out 'temporary placeholder' clsuter nodes with handshake flag that redis creates internally during cluster handshake (during initial cluster MEET, cluster MEET, cluster PONG sequence) since they are not expected to be usable members of the cluster at that time.
// Be resilient to "handshake" nodes, which are nodes that are in the process of joining the cluster and hence might not have all information available yet.
185
+
// These nodes will be included in the configuration once they finish the handshake process and are fully part of the cluster, so we can safely ignore them for now.
186
+
if(node.IsHandshake)
187
+
continue;
188
+
184
189
// Override the origin value with the endpoint advertised with the target node to
185
190
// make sure that things like clusterConfiguration[clusterConfiguration.Origin]
0 commit comments