Github user srowen commented on a diff in the pull request:
https://github.com/apache/spark/pull/18547#discussion_r125742629
--- Diff: core/src/main/scala/org/apache/spark/rpc/netty/Inbox.scala ---
@@ -206,6 +206,13 @@ private[netty] class Inbox(
case NonFatal(e) =>
try endpoint.onError(e) catch {
case NonFatal(ee) => logError(s"Ignoring error", ee)
+ case NonFatal(ee) =>
+ if (stopped) {
+ logDebug(s"Ignoring error", ee)
--- End diff --
logInfo, not debug, probably. I can see reducing the level if you know
your'e stopping, but not in other cases. The code style here would have to be
fixed. For example you don't use string interpolation here.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]