Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5888#discussion_r183356576
--- Diff:
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/history/HistoryServerArchiveFetcher.java
---
@@ -231,18 +243,20 @@ public void run() {
* <p>For the display in the HistoryServer WebFrontend we have to
combine these overviews.
*/
private static void updateJobOverview(File webDir) {
- File webOverviewDir = new File(webDir, "overviews");
- try (JsonGenerator gen =
jacksonFactory.createGenerator(HistoryServer.createOrGetFile(webDir,
"joboverview"))) {
+ File webOverviewDir = new File(webDir, "/jobs/");
+ try (JsonGenerator gen =
jacksonFactory.createGenerator(HistoryServer.createOrGetFile(webDir,
"/jobs/overview"))) {
--- End diff --
replace webDir with webOverviewDir and adjust the child path accordingly
---