Skip to content
Snippets Groups Projects
Commit 98d0b774 authored by Stephen Haberman's avatar Stephen Haberman
Browse files

Fix Worker logInfo about unknown executor.

parent 8c51322c
No related branches found
No related tags found
No related merge requests found
...@@ -148,7 +148,7 @@ private[spark] class Worker( ...@@ -148,7 +148,7 @@ private[spark] class Worker(
logInfo("Asked to kill executor " + fullId) logInfo("Asked to kill executor " + fullId)
executor.kill() executor.kill()
case None => case None =>
logInfo("Asked to kill non-existent existent " + fullId) logInfo("Asked to kill unknown executor " + fullId)
} }
case Terminated(_) | RemoteClientDisconnected(_, _) | RemoteClientShutdown(_, _) => case Terminated(_) | RemoteClientDisconnected(_, _) | RemoteClientShutdown(_, _) =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment