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
// Select from the available endpoints, don't construct a new ServiceEndpoint object here
107
102
returnendpoints.FirstOrDefault(s=>s.Name==endpointName&&s.Online) // Get the endpoint with name matching the incoming request
108
103
??base.GetNegotiateEndpoint(context, endpoints); // Or fallback to the default behavior to randomly select one from primary endpoints, or fallback to secondary when no primary ones are online
@@ -182,15 +177,9 @@ private class CustomRouter : EndpointRouterDecorator
// Select from the available endpoints, don't construct a new ServiceEndpoint object here
194
183
returnendpoints.FirstOrDefault(s=>s.Name==endpointName&&s.Online) // Get the endpoint with name matching the incoming request
195
184
??base.GetNegotiateEndpoint(context, endpoints); // Or fallback to the default behavior to randomly select one from primary endpoints, or fallback to secondary when no primary ones are online
0 commit comments