Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Commit c892f7d

Browse files
Support debugging when on IPv6 network (Node's "Debugger listening" message is phrased differently there)
1 parent f2f67fe commit c892f7d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Microsoft.AspNetCore.NodeServices/HostingModels/OutOfProcessNodeInstance.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ private void ConnectToInputOutputStreams()
251251

252252
private static bool IsDebuggerListeningMessage(string message)
253253
{
254-
return message.StartsWith("Debugger listening on port ", StringComparison.OrdinalIgnoreCase);
254+
return message.StartsWith("Debugger listening ", StringComparison.OrdinalIgnoreCase);
255255
}
256256

257257
private FileSystemWatcher BeginFileWatcher(string rootDir)

0 commit comments

Comments
 (0)