File tree 1 file changed +2
-2
lines changed
java/client/src/org/openqa/selenium/os
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 25
25
import com .google .common .collect .Maps ;
26
26
27
27
import org .apache .commons .exec .DefaultExecuteResultHandler ;
28
- import org .apache .commons .exec .DefaultExecutor ;
28
+ import org .apache .commons .exec .DaemonExecutor ;
29
29
import org .apache .commons .exec .ExecuteWatchdog ;
30
30
import org .apache .commons .exec .Executor ;
31
31
import org .apache .commons .exec .PumpStreamHandler ;
@@ -48,7 +48,7 @@ class UnixProcess implements OsProcess {
48
48
private final ByteArrayOutputStream inputOut = new ByteArrayOutputStream ();
49
49
private volatile String allInput ;
50
50
private final DefaultExecuteResultHandler handler = new DefaultExecuteResultHandler ();
51
- private final Executor executor = new DefaultExecutor ();
51
+ private final Executor executor = new DaemonExecutor ();
52
52
53
53
private volatile OutputStream drainTo ;
54
54
private SeleniumWatchDog executeWatchdog = new SeleniumWatchDog (
You can’t perform that action at this time.
0 commit comments