Skip to content

Commit

Permalink
[SPARK-3709] Executors don't always report broadcast block removal pr…
Browse files Browse the repository at this point in the history
…operly back to the driver
  • Loading branch information
rxin committed Sep 30, 2014
1 parent 85dd513 commit ab99cc0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ class BlockManagerSlaveActor(
blockManager.shuffleBlockManager.removeShuffle(shuffleId)
}

case RemoveBroadcast(broadcastId, tellMaster) =>
case RemoveBroadcast(broadcastId, _) =>
doAsync[Int]("removing broadcast " + broadcastId, sender) {
blockManager.removeBroadcast(broadcastId, tellMaster)
blockManager.removeBroadcast(broadcastId, tellMaster = true)
}

case GetBlockStatus(blockId, _) =>
Expand Down

0 comments on commit ab99cc0

Please sign in to comment.