We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a61910 commit f746e6cCopy full SHA for f746e6c
1 file changed
src/win/conpty.cc
@@ -230,15 +230,15 @@ HRESULT CreateNamedPipesAndPseudoConsole(const Napi::CallbackInfo& info,
230
{
231
// Failed to find CreatePseudoConsole in kernel32. This is likely because
232
// the user is not running a build of Windows that supports that API.
233
- // We should fall back to winpty in this case.
+ //
234
return HRESULT_FROM_WIN32(GetLastError());
235
}
236
} else {
237
throw errorWithCode(info, "Failed to load conpty.dll");
238
239
240
// Failed to find kernel32. This is realy unlikely - honestly no idea how
241
- // this is even possible to hit. But if it does happen, fall back to winpty.
+ // this is even possible to hit. We are no longer falling back to winpty.
242
243
244
0 commit comments