Skip to content

Commit

Permalink
Update batch desc format.
Browse files Browse the repository at this point in the history
  • Loading branch information
kunalkhamar committed Apr 28, 2017
1 parent f9342c9 commit 6e66638
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -834,8 +834,8 @@ class StreamExecution(

private def getBatchDescriptionString: String = {
val batchDescription = if (currentBatchId < 0) "init" else currentBatchId.toString
Option(name).map(_ + " ").getOrElse("") +
s"[batch = $batchDescription,<br/>id = $id,<br/>runId = $runId]"
Option(name).map(_ + "<br/>").getOrElse("") +
s"id = $id<br/>runId = $runId<br/>batch = $batchDescription"
}
}

Expand Down

0 comments on commit 6e66638

Please sign in to comment.