Skip to content

Commit

Permalink
Fix stdout issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mxm committed Dec 18, 2018
1 parent 786381b commit 1c2b08d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void testConfigurationFromConfig() {
public void testJobServerDriver() throws Exception {
FlinkJobServerDriver driver = null;
Thread driverThread = null;
final PrintStream oldOut = System.out;
final PrintStream oldOut = System.err;
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PrintStream newOut = new PrintStream(baos);
try {
Expand Down

0 comments on commit 1c2b08d

Please sign in to comment.