Skip to content

Commit

Permalink
Merge pull request alteryx#138 from marmbrus/branch-0.8
Browse files Browse the repository at this point in the history
Fix build break caused by BlockInfo refactor
  • Loading branch information
rxin committed Nov 5, 2013
2 parents a3544ee + c519de9 commit 1d11e43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ private[spark] class BlockManager(
// to be dropped right after it got put into memory. Note, however, that other threads will
// not be able to get() this block until we call markReady on its BlockInfo.
val myInfo = {
val tinfo = new BlockInfo(level, tellMaster)
val tinfo = new BlockInfoImpl(level, tellMaster)
// Do atomically !
val oldBlockOpt = blockInfo.putIfAbsent(blockId, tinfo)

Expand Down

0 comments on commit 1d11e43

Please sign in to comment.