You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2019/02/15 07:17:50 UTC

[GitHub] yanghua commented on a change in pull request #7571: [FLINK-10724] Refactor failure handling in check point coordinator

yanghua commented on a change in pull request #7571: [FLINK-10724] Refactor failure handling in check point coordinator
URL: https://github.com/apache/flink/pull/7571#discussion_r257125937
 
 

 ##########
 File path: flink-tests/src/test/java/org/apache/flink/test/checkpointing/EventTimeWindowCheckpointingITCase.java
 ##########
 @@ -308,8 +309,12 @@ public void apply(
 			env.execute("Tumbling Window Test");
 		}
 		catch (Exception e) {
-			e.printStackTrace();
-			fail(e.getMessage());
+			if (e.getCause().getCause() instanceof CancellationException) {
 
 Review comment:
   There is a concurrent cancellation exception, which is initially suspected to be caused by a mini cluster (multithreaded analog flink cluster) executing a job. So, I am currently ignoring this exception.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services