aboutsummaryrefslogtreecommitdiff
path: root/streaming/src
diff options
context:
space:
mode:
authorReynold Xin <rxin@apache.org>2014-01-13 15:58:39 -0800
committerReynold Xin <rxin@apache.org>2014-01-13 15:58:39 -0800
commit30328c347bb9974f551fea2d3e9b19c6a9cd25a9 (patch)
tree8bb2dfb5f81b1568c3788c4319957e5403a4573f /streaming/src
parentb93f9d42f21f03163734ef97b2871db945e166da (diff)
downloadspark-30328c347bb9974f551fea2d3e9b19c6a9cd25a9.tar.gz
spark-30328c347bb9974f551fea2d3e9b19c6a9cd25a9.tar.bz2
spark-30328c347bb9974f551fea2d3e9b19c6a9cd25a9.zip
Updated JavaStreamingContext to make scaladoc compile.
`sbt/sbt doc` used to fail. This fixed it.
Diffstat (limited to 'streaming/src')
-rw-r--r--streaming/src/main/scala/org/apache/spark/streaming/api/java/JavaStreamingContext.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/src/main/scala/org/apache/spark/streaming/api/java/JavaStreamingContext.scala b/streaming/src/main/scala/org/apache/spark/streaming/api/java/JavaStreamingContext.scala
index a2f0b88cb0..108950466a 100644
--- a/streaming/src/main/scala/org/apache/spark/streaming/api/java/JavaStreamingContext.scala
+++ b/streaming/src/main/scala/org/apache/spark/streaming/api/java/JavaStreamingContext.scala
@@ -132,7 +132,7 @@ class JavaStreamingContext(val ssc: StreamingContext) {
* Re-creates a StreamingContext from a checkpoint file.
* @param path Path to the directory that was specified as the checkpoint directory
*/
- def this(path: String) = this(new StreamingContext(path))
+ def this(path: String) = this(new StreamingContext(path, new Configuration))
/**
* Re-creates a StreamingContext from a checkpoint file.