Skip to content

Commit

Permalink
typo (#1428)
Browse files Browse the repository at this point in the history
  • Loading branch information
vilinski committed Feb 4, 2022
1 parent 62983f8 commit 51bbe10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Proto.Cluster/Member/MemberList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ internal void InitializeTopologyConsensus() => _topologyConsensus =
if (_memberStrategyByKind.TryGetValue(kind, out var memberStrategy))
return memberStrategy.GetActivator(requestSourceAddress);

Logger.LogInformation("MemberList did not find any not find any activator for kind '{Kind}'", kind);
Logger.LogInformation("MemberList did not find any activator for kind '{Kind}'", kind);
return null;
}
}
Expand Down Expand Up @@ -329,4 +329,4 @@ public void BroadcastEvent(object message, bool includeSelf = true)

public Member[] GetMembersByKind(string kind) => _activeMembers.Members.Where(m => m.Kinds.Contains(kind)).ToArray();
}
}
}

0 comments on commit 51bbe10

Please sign in to comment.