Repository: spark Updated Branches: refs/heads/branch-1.2 cf55a2b0e -> db83acb1f
[HOTFIX] Add missing SparkContext._ import to fix 1.2 build. This fixes a build break caused by a0bb88e0067688886be594d209fc48c91ed73a11 Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/db83acb1 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/db83acb1 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/db83acb1 Branch: refs/heads/branch-1.2 Commit: db83acb1fa9b34c8d9a7459bdd60865581b9f41c Parents: cf55a2b Author: Josh Rosen <[email protected]> Authored: Mon Jan 5 16:57:45 2015 -0800 Committer: Josh Rosen <[email protected]> Committed: Mon Jan 5 16:58:25 2015 -0800 ---------------------------------------------------------------------- .../src/test/scala/org/apache/spark/streaming/CheckpointSuite.scala | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/db83acb1/streaming/src/test/scala/org/apache/spark/streaming/CheckpointSuite.scala ---------------------------------------------------------------------- diff --git a/streaming/src/test/scala/org/apache/spark/streaming/CheckpointSuite.scala b/streaming/src/test/scala/org/apache/spark/streaming/CheckpointSuite.scala index dc21015..c9f6ddc 100644 --- a/streaming/src/test/scala/org/apache/spark/streaming/CheckpointSuite.scala +++ b/streaming/src/test/scala/org/apache/spark/streaming/CheckpointSuite.scala @@ -30,6 +30,7 @@ import org.apache.hadoop.io.{IntWritable, Text} import org.apache.hadoop.mapred.TextOutputFormat import org.apache.hadoop.mapreduce.lib.output.{TextOutputFormat => NewTextOutputFormat} +import org.apache.spark.SparkContext._ import org.apache.spark.streaming.StreamingContext._ import org.apache.spark.streaming.dstream.{DStream, FileInputDStream} import org.apache.spark.streaming.util.ManualClock --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
