Skip to content
Snippets Groups Projects
Commit 4d480ec5 authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Fixed something that was reported as a compile error in ScalaDoc.

For some reason, ScalaDoc complained about no such constructor for
StreamingContext; it doesn't seem like an actual Scala error but it
prevented sbt publish and from working because docs weren't built.
parent 6494cab1
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ class JavaStreamingContext(val ssc: StreamingContext) {
* @param batchDuration The time interval at which streaming data will be divided into batches
*/
def this(master: String, appName: String, batchDuration: Duration) =
this(new StreamingContext(master, appName, batchDuration))
this(new StreamingContext(master, appName, batchDuration, null, Nil, Map()))
/**
* Creates a StreamingContext.
......@@ -58,7 +58,7 @@ class JavaStreamingContext(val ssc: StreamingContext) {
batchDuration: Duration,
sparkHome: String,
jars: Array[String]) =
this(new StreamingContext(master, appName, batchDuration, sparkHome, jars))
this(new StreamingContext(master, appName, batchDuration, sparkHome, jars, Map()))
/**
* Creates a StreamingContext.
......
......@@ -159,7 +159,7 @@ object MasterFailureTest extends Logging {
// Setup the streaming computation with the given operation
System.clearProperty("spark.driver.port")
var ssc = new StreamingContext("local[4]", "MasterFailureTest", batchDuration)
var ssc = new StreamingContext("local[4]", "MasterFailureTest", batchDuration, null, Nil, Map())
ssc.checkpoint(checkpointDir.toString)
val inputStream = ssc.textFileStream(testDir.toString)
val operatedStream = operation(inputStream)
......
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