Ngone51 commented on a change in pull request #32868:
URL: https://github.com/apache/spark/pull/32868#discussion_r654210782



##########
File path: 
core/src/main/scala/org/apache/spark/deploy/worker/WorkerWatcher.scala
##########
@@ -45,7 +50,14 @@ private[spark] class WorkerWatcher(
   private val expectedAddress = RpcAddress.fromURIString(workerUrl)
   private def isWorker(address: RpcAddress) = expectedAddress == address
 
-  private def exitNonZero() = if (isTesting) isShutDown = true else 
System.exit(-1)
+  private def exitNonZero() =
+    if (isTesting) {
+      isShutDown = true
+    } else {
+      ThreadUtils.awaitResult(Future {

Review comment:
       Maybe, using a global flag between `WorkerWatcher` and 
`CoarseGrainedExecutorBackend` to indicate whether `System.exit` has been 
called? 




-- 
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]

Reply via email to