Skip to content

Commit 5b3f1ba

Browse files
mxschmittnohwnd
andauthored
fix(CreateAsync): try/catch restoring of Input/Output Encoding (#2901)
Co-authored-by: Jakub Jareš <[email protected]>
1 parent 93f617d commit 5b3f1ba

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/Playwright/Transport/StdIOTransport.cs

+11-3
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,17 @@ private static void StartProcessWithUTF8IOEncoding(Process process)
171171
{
172172
if (hasConsole)
173173
{
174-
// Restore the original encodings
175-
Console.InputEncoding = originalInputEncoding;
176-
Console.OutputEncoding = originalOutputEncoding;
174+
try
175+
{
176+
// Restore the original encodings
177+
Console.InputEncoding = originalInputEncoding;
178+
Console.OutputEncoding = originalOutputEncoding;
179+
}
180+
catch (System.IO.IOException)
181+
{
182+
// It can fail under some conditions:
183+
// https://github.com/microsoft/playwright-dotnet/issues/2888
184+
}
177185
}
178186
}
179187
}

0 commit comments

Comments
 (0)