dawidwys commented on a change in pull request #19281:
URL: https://github.com/apache/flink/pull/19281#discussion_r838563499



##########
File path: 
flink-tests/src/test/java/org/apache/flink/test/checkpointing/SavepointITCase.java
##########
@@ -342,7 +341,9 @@ public void testStopWithSavepointFailsOverToSavepoint() 
throws Throwable {
                                     && throwable
                                             .getMessage()
                                             .startsWith("A savepoint has been 
created at: "));
-            assertThat(client.getJobStatus(jobGraph.getJobID()).get(), 
is(JobStatus.FAILED));
+            assertThat(
+                    client.getJobStatus(jobGraph.getJobID()).get(),
+                    either(is(JobStatus.FAILED)).or(is(JobStatus.FAILING)));

Review comment:
       The adaptive scheduler seems to be going into `FAILING` state instead of 
`FAILED`. What we care here is that it does not go into restarting.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to