Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ private[cluster] class ClusterCoreDaemon(publisher: ActorRef, joinConfigCompatCh
def join(address: Address): Unit = {
if (!acceptedProtocols.contains(address.protocol))
logWarning(
"Trying to join member with wrong protocol, but was ignored, expected any of {} but was [{}]",
"Trying to join member with wrong protocol, but was ignored, expected any of [{}] but was [{}]",
acceptedProtocols,
address.protocol)
else if (address.system != selfAddress.system)
Expand Down
Loading