Skip to content
Snippets Groups Projects
Commit 0015d273 authored by skeirik2's avatar skeirik2
Browse files

fixed missing paren

parent 28f62df8
No related branches found
No related tags found
No related merge requests found
......@@ -474,7 +474,7 @@ private[spark] class MemoryStore(
val bxi_iterator = blockManager.inMemBlockExInfo.iterator()
while (freedMemory < space && bxi_iterator.hasNext) {
val bxi = iterator.next()
if (blockIsEvictable(bxi.blockId,entries(
if (blockIsEvictable(bxi.blockId,entries(bxi.blockId))) {
blockManager.stageExInfos.get(blockManager.currentStage) match {
case Some(curStageExInfo) =>
// cur is this stage's output RDD
......
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