Remove extra cast for IPEndPoint (#17812)

This commit is contained in:
Kahbazi 2019-12-12 20:03:43 +03:30 committed by Andrew Stanton-Nurse
parent db81768f8e
commit fde783911b
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}