File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/scala/org/apache/spark/ui/jobs Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -224,10 +224,10 @@ private[ui] class AllJobsPage(parent: JobsTab) extends WebUIPage("") {
224
224
}
225
225
val formattedDuration = duration.map(d => UIUtils .formatDuration(d)).getOrElse(" Unknown" )
226
226
val formattedSubmissionTime = job.submissionTime.map(UIUtils .formatDate).getOrElse(" Unknown" )
227
- val jobDescription = UIUtils .makeDescription(lastStageDescription, parent.basePath)
227
+ val basePathUri = UIUtils .prependBaseUri(parent.basePath)
228
+ val jobDescription = UIUtils .makeDescription(lastStageDescription, basePathUri)
228
229
229
- val detailUrl =
230
- " %s/jobs/job?id=%s" .format(UIUtils .prependBaseUri(parent.basePath), job.jobId)
230
+ val detailUrl = " %s/jobs/job?id=%s" .format(basePathUri, job.jobId)
231
231
<tr id ={" job-" + job.jobId}>
232
232
<td sorttable_customkey ={job.jobId.toString}>
233
233
{job.jobId} {job.jobGroup.map(id => s " ( $id) " ).getOrElse(" " )}
You can’t perform that action at this time.
0 commit comments