Skip to content

Commit c892f7d

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)