YARN-7400. Incorrect log preview displayed in jobhistory server ui. Contributed by Xuan Gong.
This commit is contained in:
parent
70f1a9470c
commit
d57dba9942
@ -221,8 +221,8 @@ protected void render(Block html) {
|
||||
__(" for the full log.").__();
|
||||
}
|
||||
long totalSkipped = 0;
|
||||
while (totalSkipped < start) {
|
||||
long ret = in.skip(start - totalSkipped);
|
||||
while (totalSkipped < startIndex) {
|
||||
long ret = in.skip(startIndex - totalSkipped);
|
||||
if (ret == 0) {
|
||||
//Read one byte
|
||||
int nextByte = in.read();
|
||||
|
Loading…
Reference in New Issue
Block a user