Skip to content
Snippets Groups Projects
Commit 63bc0c44 authored by Carson Wang's avatar Carson Wang Committed by Tathagata Das
Browse files

[SPARK-8098] [WEBUI] Show correct length of bytes on log page

The log page should only show desired length of bytes. Currently it shows bytes from the startIndex to the end of the file. The "Next" button on the page is always disabled.

Author: Carson Wang <carson.wang@intel.com>

Closes #6640 from carsonwang/logpage and squashes the following commits:

58cb3fd [Carson Wang] Show correct length of bytes on log page
parent 2bcdf8c2
No related branches found
No related tags found
No related merge requests found
......@@ -159,7 +159,7 @@ private[ui] class LogPage(parent: WorkerWebUI) extends WebUIPage("logPage") with
offset
}
}
val endIndex = math.min(startIndex + totalLength, totalLength)
val endIndex = math.min(startIndex + byteLength, totalLength)
logDebug(s"Getting log from $startIndex to $endIndex")
val logText = Utils.offsetBytes(files, startIndex, endIndex)
logDebug(s"Got log of length ${logText.length} bytes")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment