Skip to content

Commit a465ce4

Browse files
committed
Update JobManagerActor.scala
A Jira ticket #1230 exists, but a Spark PR #1230 does not in either the incubator or the graduated github repos. https://spark-project.atlassian.net/browse/SPARK-1230 What does exist though is this PR addressing SPARK-1230 apache/spark#119
1 parent 7cc269d commit a465ce4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

job-server/src/spark.jobserver/JobManagerActor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class JobManagerActor(dao: JobDAO,
7676
// the executors to re-download the jar every time, and causes race conditions.
7777
// NOTE: It's important that jobCache be lazy as sparkContext is not initialized until later
7878
private val jobCacheSize = Try(config.getInt("spark.job-cache.max-entries")).getOrElse(10000)
79-
// Use Spark Context's built in classloader when PR #1230 is merged.
79+
// Use Spark Context's built in classloader when SPARK-1230 is merged.
8080
private val jarLoader = new ContextURLClassLoader(Array[URL](), getClass.getClassLoader)
8181
lazy val jobCache = new JobCache(jobCacheSize, dao, sparkContext, jarLoader)
8282

0 commit comments

Comments
 (0)