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 cb05616 commit 24bf257Copy full SHA for 24bf257
dotnet/src/webdriver/DriverService.cs
@@ -255,8 +255,8 @@ public void Start()
255
DriverProcessStartingEventArgs eventArgs = new DriverProcessStartingEventArgs(this.driverServiceProcess.StartInfo);
256
this.OnDriverProcessStarting(eventArgs);
257
258
+ // Important: Start the process and immediately begin reading the output and error streams to avoid IO deadlocks.
259
this.driverServiceProcess.Start();
-
260
this.driverServiceProcess.BeginOutputReadLine();
261
this.driverServiceProcess.BeginErrorReadLine();
262
0 commit comments