Skip to content

Commit b4c75ed

Browse files
committed
fix merge conflicts; need to widen visibility in a few cases
1 parent e91750a commit b4c75ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/src/main/scala/org/apache/spark/deploy/history/ApplicationHistoryProvider.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package org.apache.spark.deploy.history
1919

2020
import org.apache.spark.ui.SparkUI
2121

22-
private[history] case class ApplicationHistoryInfo(
22+
private[spark] case class ApplicationHistoryInfo(
2323
id: String,
2424
name: String,
2525
startTime: Long,

core/src/main/scala/org/apache/spark/deploy/master/ApplicationInfo.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import org.apache.spark.annotation.DeveloperApi
2828
import org.apache.spark.deploy.ApplicationDescription
2929
import org.apache.spark.util.Utils
3030

31-
private[deploy] class ApplicationInfo(
31+
private[spark] class ApplicationInfo(
3232
val startTime: Long,
3333
val id: String,
3434
val desc: ApplicationDescription,

core/src/main/scala/org/apache/spark/deploy/master/Master.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ private[master] class Master(
735735
* Rebuild a new SparkUI from the given application's event logs.
736736
* Return the UI if successful, else None
737737
*/
738-
private def rebuildSparkUI(app: ApplicationInfo): Option[SparkUI] = {
738+
private[master] def rebuildSparkUI(app: ApplicationInfo): Option[SparkUI] = {
739739
val appName = app.desc.name
740740
val notFoundBasePath = HistoryServer.UI_PATH_PREFIX + "/not-found"
741741
try {

0 commit comments

Comments
 (0)