You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2017/10/11 09:55:37 UTC

flink git commit: [FLINK-7792] [tests][client] Only suppress stdout for CLI tests

Repository: flink
Updated Branches:
  refs/heads/master 427dfe42e -> 367e430e5


[FLINK-7792] [tests][client] Only suppress stdout for CLI tests

This closes #4792.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/367e430e
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/367e430e
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/367e430e

Branch: refs/heads/master
Commit: 367e430e5d4afd6bd7f78ff68dd31254fb2179bd
Parents: 427dfe4
Author: zentol <ch...@apache.org>
Authored: Tue Oct 10 16:38:08 2017 +0200
Committer: zentol <ch...@apache.org>
Committed: Wed Oct 11 11:55:09 2017 +0200

----------------------------------------------------------------------
 .../src/test/java/org/apache/flink/client/CliFrontendTestUtils.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/367e430e/flink-clients/src/test/java/org/apache/flink/client/CliFrontendTestUtils.java
----------------------------------------------------------------------
diff --git a/flink-clients/src/test/java/org/apache/flink/client/CliFrontendTestUtils.java b/flink-clients/src/test/java/org/apache/flink/client/CliFrontendTestUtils.java
index 7c9c773..8df39e0 100644
--- a/flink-clients/src/test/java/org/apache/flink/client/CliFrontendTestUtils.java
+++ b/flink-clients/src/test/java/org/apache/flink/client/CliFrontendTestUtils.java
@@ -66,7 +66,6 @@ public class CliFrontendTestUtils {
 
 	public static void pipeSystemOutToNull() {
 		System.setOut(new PrintStream(new BlackholeOutputSteam()));
-		System.setErr(new PrintStream(new BlackholeOutputSteam()));
 	}
 
 	private static final class BlackholeOutputSteam extends java.io.OutputStream {