Skip to content

Commit d96f01e

Browse files
committed
Should clear the named pipe issue
1 parent a464557 commit d96f01e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Http/src/BindingAddress.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ public static BindingAddress Parse(string address)
203203
var port = 0;
204204

205205
var hasSpecifiedPort = false;
206-
if (!isUnixPipe)
206+
if (!isUnixPipe && !isNamedPipe)
207207
{
208208
var portDelimiterStart = address.LastIndexOf(':', pathDelimiterStart - 1, pathDelimiterStart - schemeDelimiterEnd);
209209
if (portDelimiterStart >= 0)

0 commit comments

Comments
 (0)