tillrohrmann commented on a change in pull request #8534: [FLINK-12614][yarn] 
Refactor test to not do assertions in @After methods 
URL: https://github.com/apache/flink/pull/8534#discussion_r287437317
 
 

 ##########
 File path: 
flink-yarn-tests/src/test/java/org/apache/flink/yarn/YarnTestBase.java
 ##########
 @@ -212,30 +212,45 @@ public void checkClusterEmpty() {
         * Sleep a bit between the tests (we are re-using the YARN cluster for 
the tests).
         */
        @After
-       public void sleep() throws IOException, YarnException {
-               Deadline deadline = Deadline.now().plus(Duration.ofSeconds(10));
+       public void shutdownYarnClient() {
+               yarnClient.stop();
+       }
 
-               boolean isAnyJobRunning = yarnClient.getApplications().stream()
-                       .anyMatch(YarnTestBase::isApplicationRunning);
+       protected void runTest(RunnableWithException test) {
+               Throwable testFailure = null;
+               try {
+                       test.run();
+               } catch (Throwable t) {
+                       testFailure = t;
 
 Review comment:
   No need to catch `t` if the application shut down is done in a `finally` 
block.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to