Sfoglia il codice sorgente

YARN-7400. Incorrect log preview displayed in jobhistory server ui. Contributed by Xuan Gong.

Junping Du 7 anni fa
parent
commit
d57dba9942

+ 2 - 2
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/logaggregation/filecontroller/ifile/IndexedFileAggregatedLogsBlock.java

@@ -221,8 +221,8 @@ public class IndexedFileAggregatedLogsBlock extends LogAggregationHtmlBlock {
                       __(" 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();