We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db05817 commit 8a72168Copy full SHA for 8a72168
dotnet/src/webdriver/DriverService.cs
@@ -268,12 +268,9 @@ public void Start()
268
269
this.driverServiceProcess.Start();
270
271
- if (this.EnableProcessRedirection)
272
- {
273
- // Important: Start the process and immediately begin reading the output and error streams to avoid IO deadlocks.
274
- this.driverServiceProcess.BeginOutputReadLine();
275
- this.driverServiceProcess.BeginErrorReadLine();
276
- }
+ // Important: Start the process and immediately begin reading the output and error streams to avoid IO deadlocks.
+ this.driverServiceProcess.BeginOutputReadLine();
+ this.driverServiceProcess.BeginErrorReadLine();
277
278
bool serviceAvailable = this.WaitForServiceInitialization();
279
0 commit comments