[ https://issues.apache.org/jira/browse/FLINK-9194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16447975#comment-16447975 ]
ASF GitHub Bot commented on FLINK-9194: --------------------------------------- Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/5888#discussion_r183357018 --- Diff: flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/history/HistoryServerTest.java --- @@ -96,9 +108,26 @@ public void testFullArchiveLifecycle() throws Exception { String response = getFromHTTP(baseUrl + JobsOverviewHeaders.URL); JsonNode overview = mapper.readTree(response); - String jobID = overview.get("jobs").get(0).get("jid").asText(); - JsonNode jobDetails = mapper.readTree(getFromHTTP(baseUrl + "/jobs/" + jobID)); - Assert.assertNotNull(jobDetails.get("jid")); + JsonNode allJobs = overview.get("jobs"); --- End diff -- safer implementation is now possible by reading this as a `MultipleJobsDetails`. > Finished jobs are not archived to HistoryServer > ----------------------------------------------- > > Key: FLINK-9194 > URL: https://issues.apache.org/jira/browse/FLINK-9194 > Project: Flink > Issue Type: Bug > Components: History Server, JobManager > Affects Versions: 1.5.0 > Environment: Flink 2af481a > Reporter: Gary Yao > Assignee: Chesnay Schepler > Priority: Blocker > Labels: flip-6 > Fix For: 1.6.0 > > > In flip6 mode, jobs are not archived to the HistoryServer. -- This message was sent by Atlassian JIRA (v7.6.3#76005)