Merge pull request #28401 from akka/wip-28393-reachable-log-patriknw

fix wrong logging of REACHABLE, #28393
This commit is contained in:
Patrik Nordwall 2019-12-19 14:02:14 +01:00 committed by GitHub
commit 2c15c8d753
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1458,7 +1458,7 @@ private[cluster] class ClusterCoreDaemon(publisher: ActorRef, joinConfigCompatCh
logInfo(
"Marking exiting node(s) as UNREACHABLE [{}]. This is expected and they will be removed.",
exiting.mkString(", "))
nonExiting.foreach { node =>
newlyDetectedReachableMembers.foreach { node =>
logInfo(ClusterLogMarker.reachable(node.address), "Marking node as REACHABLE [{}].", node)
}