Skip to content

Commit

Permalink
Streaming Scheduling Delay => Scheduling Delay
Browse files Browse the repository at this point in the history
  • Loading branch information
zsxwing committed May 5, 2015
1 parent d457277 commit 70cc87d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private[ui] abstract class BatchTableBase(tableId: String) {
protected def columns: Seq[Node] = {
<th>Batch Time</th>
<th>Input Size</th>
<th>Streaming Scheduling Delay</th>
<th>Scheduling Delay</th>
<th>Processing Time</th>
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ private[ui] class StreamingPage(parent: StreamingTab)
<tr>
<td style="vertical-align: middle;">
<div style="width: 160px;">
<div><strong>Streaming Scheduling Delay</strong></div>
<div><strong>Scheduling Delay</strong></div>
<div>Avg: {schedulingDelay.formattedAvg}</div>
</div>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class UISeleniumSuite

val statTableCells = findAll(cssSelector("#stat-table td")).map(_.text).toSeq
statTableCells.exists(_.contains("Input Rate")) should be (true)
statTableCells.exists(_.contains("Streaming Scheduling Delay")) should be (true)
statTableCells.exists(_.contains("Scheduling Delay")) should be (true)
statTableCells.exists(_.contains("Processing Time")) should be (true)
statTableCells.exists(_.contains("Total Delay")) should be (true)

Expand All @@ -116,11 +116,11 @@ class UISeleniumSuite
h4Text.exists(_.matches("Completed Batches \\(last \\d+ out of \\d+\\)")) should be (true)

findAll(cssSelector("""#active-batches-table th""")).map(_.text).toSeq should be {
List("Batch Time", "Input Size", "Streaming Scheduling Delay", "Processing Time",
List("Batch Time", "Input Size", "Scheduling Delay", "Processing Time",
"Status")
}
findAll(cssSelector("""#completed-batches-table th""")).map(_.text).toSeq should be {
List("Batch Time", "Input Size", "Streaming Scheduling Delay", "Processing Time",
List("Batch Time", "Input Size", "Scheduling Delay", "Processing Time",
"Total Delay")
}

Expand Down

0 comments on commit 70cc87d

Please sign in to comment.