-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#849 Fixes to ClusterRouterGroup #953
#849 Fixes to ClusterRouterGroup #953
Conversation
AddRoutees(routees); | ||
var paths = group.Paths; | ||
if (paths.NonEmpty()) | ||
AddRoutees(paths.Select(p => group.RouteeFor(p, this)).ToList()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Down the rabbit hole.
Going to squash these commits when i get home tonight. @Aaronontheweb mind giving this a look over when you can? |
yeessir - can do! I will personally be thrilled to see this spec pass. Been one that's eluded me for a while! |
I branched off this and merged in my app domain changes. Makes it really
|
fixed ClusterConsistentHashingGroupMultiNode reworked ActorSelection to fall in line with akka canonical
once we get an overload with the |
I'm going to be opening up a PR for it soon just to keep it around until we can get them to consistently pass. I also added the teamcity output. |
…tion #849 Fixes to ClusterRouterGroup
/// </summary> | ||
/// <param name="obj">The array to check.</param> | ||
/// <returns>True if not null or empty, false otherwise.</returns> | ||
public static bool NonEmpty(this Array obj) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't linq .Any()
work for this? I just realized that right after I closed the PR :\
No description provided.