Skip to content

Commit

Permalink
Increasing log buffer max size
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Feb 4, 2016
1 parent 2021f28 commit aaf8168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/client/src/org/openqa/selenium/os/UnixProcess.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
class UnixProcess implements OsProcess {
private static final Logger log = Logger.getLogger(UnixProcess.class.getName());

private final CircularOutputStream inputOut = new CircularOutputStream(null);
private final CircularOutputStream inputOut = new CircularOutputStream(32768);
private volatile String allInput;
private final DefaultExecuteResultHandler handler = new DefaultExecuteResultHandler();
private final Executor executor = new DaemonExecutor();
Expand Down

0 comments on commit aaf8168

Please sign in to comment.