You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ma...@apache.org on 2022/11/25 08:11:23 UTC

[flink] branch release-1.15 updated: [FLINK-29899][runtime][test] Removes obsolete printStackTrace()

This is an automated email from the ASF dual-hosted git repository.

mapohl pushed a commit to branch release-1.15
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.15 by this push:
     new 60eedc15671 [FLINK-29899][runtime][test] Removes obsolete printStackTrace()
60eedc15671 is described below

commit 60eedc15671a6bd8c98241b3180e25f9efb30c25
Author: Matthias Pohl <ma...@aiven.io>
AuthorDate: Fri Nov 25 12:23:09 2022 +0800

    [FLINK-29899][runtime][test] Removes obsolete printStackTrace()
    
    Signed-off-by: Matthias Pohl <ma...@aiven.io>
---
 .../runtime/rest/handler/legacy/DefaultExecutionGraphCacheTest.java      | 1 -
 1 file changed, 1 deletion(-)

diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/legacy/DefaultExecutionGraphCacheTest.java b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/legacy/DefaultExecutionGraphCacheTest.java
index b4ffe65cd11..12415d7b23d 100644
--- a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/legacy/DefaultExecutionGraphCacheTest.java
+++ b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/legacy/DefaultExecutionGraphCacheTest.java
@@ -148,7 +148,6 @@ public class DefaultExecutionGraphCacheTest extends TestLogger {
 
                 fail("The execution graph future should have been completed exceptionally.");
             } catch (ExecutionException ee) {
-                ee.printStackTrace();
                 assertTrue(ee.getCause() instanceof FlinkException);
             }