Skip to content

Commit f4f4cbe

Browse files
committed
More minor fixes.
1 parent 34bb364 commit f4f4cbe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/src/main/scala/org/apache/spark/ui/UIUtils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ private[spark] object UIUtils extends Logging {
158158
<!--
159159
function timedRefresh(timeoutPeriod) {
160160
if (timeoutPeriod > 0) {
161-
setTimeout("location.reload(true);",timeoutPeriod);
161+
setTimeout("location.reload(true);", timeoutPeriod);
162162
}
163163
}
164164
// -->

streaming/src/main/scala/org/apache/spark/streaming/ui/StreamingPage.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ private[ui] class StreamingPage(parent: StreamingTab)
3838
/** Render the page */
3939
def render(request: HttpServletRequest): Seq[Node] = {
4040
val content =
41-
generateBasicStats() ++
42-
<br></br><h4>Statistics over last {listener.retainedCompletedBatches.size} processed batches</h4> ++
41+
generateBasicStats() ++ <br></br> ++
42+
<h4>Statistics over last {listener.retainedCompletedBatches.size} processed batches</h4> ++
4343
generateNetworkStatsTable() ++
4444
generateBatchStatsTable()
4545
UIUtils.headerSparkPage(

0 commit comments

Comments
 (0)