HDFS-11967. TestJMXGet fails occasionally. Contributed by Arpit Agarwal.
This commit is contained in:
parent
3f0a727f75
commit
b3d3ede91a
|
@ -129,7 +129,7 @@ public class TestJMXGet {
|
|||
byte[] bytes = null;
|
||||
String pattern = "List of all the available keys:";
|
||||
PipedOutputStream pipeOut = new PipedOutputStream();
|
||||
PipedInputStream pipeIn = new PipedInputStream(pipeOut);
|
||||
PipedInputStream pipeIn = new PipedInputStream(pipeOut, 1024 * 1024);
|
||||
PrintStream oldErr = System.err;
|
||||
System.setErr(new PrintStream(pipeOut));
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue