Skip to content

Commit

Permalink
fix merge conflicts; need to widen visibility in a few cases
Browse files Browse the repository at this point in the history
  • Loading branch information
squito committed Mar 17, 2015
1 parent e91750a commit b4c75ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package org.apache.spark.deploy.history

import org.apache.spark.ui.SparkUI

private[history] case class ApplicationHistoryInfo(
private[spark] case class ApplicationHistoryInfo(
id: String,
name: String,
startTime: Long,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import org.apache.spark.annotation.DeveloperApi
import org.apache.spark.deploy.ApplicationDescription
import org.apache.spark.util.Utils

private[deploy] class ApplicationInfo(
private[spark] class ApplicationInfo(
val startTime: Long,
val id: String,
val desc: ApplicationDescription,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ private[master] class Master(
* Rebuild a new SparkUI from the given application's event logs.
* Return the UI if successful, else None
*/
private def rebuildSparkUI(app: ApplicationInfo): Option[SparkUI] = {
private[master] def rebuildSparkUI(app: ApplicationInfo): Option[SparkUI] = {
val appName = app.desc.name
val notFoundBasePath = HistoryServer.UI_PATH_PREFIX + "/not-found"
try {
Expand Down

0 comments on commit b4c75ed

Please sign in to comment.