=clu #3546 Change log level of gossip from unknown
* It is pretty normal when joining so users should not be worried * Change to debug level
This commit is contained in:
parent
34eb48565b
commit
4323a64183
1 changed files with 2 additions and 2 deletions
|
|
@ -549,7 +549,7 @@ private[cluster] class ClusterCoreDaemon(publisher: ActorRef) extends Actor with
|
|||
if (latestGossip.overview.unreachable.exists(_.uniqueAddress == from))
|
||||
logInfo("Ignoring received gossip status from unreachable [{}] ", from)
|
||||
else if (latestGossip.members.forall(_.uniqueAddress != from))
|
||||
logInfo("Ignoring received gossip status from unknown [{}]", from)
|
||||
log.debug("Cluster Node [{}] - Ignoring received gossip status from unknown [{}]", selfAddress, from)
|
||||
else {
|
||||
(status.version compareTo latestGossip.version) match {
|
||||
case VectorClock.Same ⇒ // same version
|
||||
|
|
@ -587,7 +587,7 @@ private[cluster] class ClusterCoreDaemon(publisher: ActorRef) extends Actor with
|
|||
logInfo("Ignoring received gossip from unreachable [{}] ", from)
|
||||
Ignored
|
||||
} else if (localGossip.members.forall(_.uniqueAddress != from)) {
|
||||
logInfo("Ignoring received gossip from unknown [{}]", from)
|
||||
log.debug("Cluster Node [{}] - Ignoring received gossip from unknown [{}]", selfAddress, from)
|
||||
Ignored
|
||||
} else if (remoteGossip.members.forall(_.uniqueAddress != selfUniqueAddress)) {
|
||||
logInfo("Ignoring received gossip that does not contain myself, from [{}]", from)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue