sqlwindspeaker commented on a change in pull request #30617:
URL: https://github.com/apache/spark/pull/30617#discussion_r537952268
##########
File path:
resource-managers/yarn/src/main/scala/org/apache/spark/scheduler/cluster/YarnClientSchedulerBackend.scala
##########
@@ -121,7 +123,8 @@ private[spark] class YarnClientSchedulerBackend(
allowInterrupt = false
sc.stop()
} catch {
- case e: InterruptedException => logInfo("Interrupting monitor thread")
+ case _: InterruptedException | _: InterruptedIOException
+ => logInfo("Interrupting monitor thread")
Review comment:
that will cause scalastyle error for too long line
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]