Github user isaias commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2055#discussion_r25069002
  
    --- Diff: core/src/main/scala/org/apache/spark/util/ActorLogReceive.scala 
---
    @@ -43,7 +43,13 @@ private[spark] trait ActorLogReceive {
     
         private val _receiveWithLogging = receiveWithLogging
     
    -    override def isDefinedAt(o: Any): Boolean = 
_receiveWithLogging.isDefinedAt(o)
    +    override def isDefinedAt(o: Any): Boolean = {
    +      val handled = _receiveWithLogging.isDefinedAt(o)
    +      if (!handled) {
    +        log.warn(s"Received unexpected actor system event: $o")
    --- End diff --
    
    @andrewor14 @srowen I think that down to info or debug is ok. What do you 
think? Can I change it? Wait for now?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to