Repository: spark
Updated Branches:
  refs/heads/master c5981976f -> f06528015


[SPARK-24160][FOLLOWUP] Fix compilation failure

## What changes were proposed in this pull request?

SPARK-24160 is causing a compilation failure (after SPARK-24143 was merged). 
This fixes the issue.

## How was this patch tested?

building successfully

Author: Marco Gaido <marcogaid...@gmail.com>

Closes #21256 from mgaido91/SPARK-24160_FOLLOWUP.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/f0652801
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f0652801
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f0652801

Branch: refs/heads/master
Commit: f06528015d5856d6dc5cce00309bc2ae985e080f
Parents: c598197
Author: Marco Gaido <marcogaid...@gmail.com>
Authored: Mon May 7 15:42:10 2018 +0800
Committer: Wenchen Fan <wenc...@databricks.com>
Committed: Mon May 7 15:42:10 2018 +0800

----------------------------------------------------------------------
 .../apache/spark/storage/ShuffleBlockFetcherIteratorSuite.scala    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/f0652801/core/src/test/scala/org/apache/spark/storage/ShuffleBlockFetcherIteratorSuite.scala
----------------------------------------------------------------------
diff --git 
a/core/src/test/scala/org/apache/spark/storage/ShuffleBlockFetcherIteratorSuite.scala
 
b/core/src/test/scala/org/apache/spark/storage/ShuffleBlockFetcherIteratorSuite.scala
index 8e9374b..a2997db 100644
--- 
a/core/src/test/scala/org/apache/spark/storage/ShuffleBlockFetcherIteratorSuite.scala
+++ 
b/core/src/test/scala/org/apache/spark/storage/ShuffleBlockFetcherIteratorSuite.scala
@@ -546,7 +546,7 @@ class ShuffleBlockFetcherIteratorSuite extends 
SparkFunSuite with PrivateMethodT
       taskContext,
       transfer,
       blockManager,
-      blocksByAddress,
+      blocksByAddress.toIterator,
       (_, in) => in,
       48 * 1024 * 1024,
       Int.MaxValue,


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to