add back brackets in logging (ClusterDaemon) (#1576)

This commit is contained in:
PJ Fanning 2024-12-09 20:16:16 +01:00 committed by GitHub
parent 11d7bc49d9
commit 5d4e8283c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)