Github user pnowojski commented on a diff in the pull request:
https://github.com/apache/flink/pull/5239#discussion_r160970483
--- Diff:
flink-tests/src/test/java/org/apache/flink/test/streaming/runtime/StateBackendITCase.java
---
@@ -85,8 +84,24 @@ public String map(Tuple2<String, Integer> value) throws
Exception {
fail();
}
catch (JobExecutionException e) {
+ boolean success = false;
--- End diff --
`assertTrue(ExceptionUtils.findThrowable(e,
SuccessException.class).isPresent());`---
