Remove extra cast for IPEndPoint (#17812)
This commit is contained in:
parent
db81768f8e
commit
fde783911b
|
|
@ -47,7 +47,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Transport.MsQuic
|
|||
await StartAsync();
|
||||
}
|
||||
|
||||
var connection = await _session.ConnectionOpenAsync(endPoint as IPEndPoint, _transportContext);
|
||||
var connection = await _session.ConnectionOpenAsync(ipEndPoint, _transportContext);
|
||||
return connection;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue