Skip to content

Commit 7e362c1

Browse files
authored
Removing unneeded URL clarification (#2520)
1 parent c2fdec4 commit 7e362c1

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Nodejs/Product/WebRole/WebSocketProxy.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ public override void ProcessHelpPageRequest(HttpContext context)
2525
using (var reader = new StreamReader(stream))
2626
{
2727
string html = reader.ReadToEnd();
28-
var wsUri = new UriBuilder(context.Request.Url) { Scheme = "wss", Port = -1 };
29-
context.Response.Write(html.Replace("{{WS_URI}}", wsUri.ToString()));
28+
context.Response.Write(html);
3029
context.Response.End();
3130
}
3231
}

Nodejs/Product/WebRole/WebSocketProxy.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
<h1>NTVS remote debugging proxy for Microsoft Azure Web Sites</h1>
1313
Node.js remote debugging is enabled for this Microsoft Azure web site, and it can be attached to using
1414
<a href='http://go.microsoft.com/fwlink/?LinkID=290972'>Node.js Tools for Visual Studio</a>. To attach, go to
15-
Debug → Attach to Process, switch Transport to "Node.js remote debugging", and enter the following
16-
URL in the Qualifier textbox:
15+
Debug → Attach to Process, switch Transport to "Node.js remote debugging", and enter the appropiate
16+
URL in the Qualifier textbox.
1717
<p>
18-
<strong>{{WS_URI}}</strong>
1918
</body>
2019
</html>

0 commit comments

Comments
 (0)