Merge branch 'rel/1.0.0-alpha2' into dev
This commit is contained in:
commit
0159d45f54
|
|
@ -51,9 +51,15 @@ namespace Microsoft.AspNetCore.Sockets.Internal.Transports
|
|||
{
|
||||
_logger.SocketOpened(_connection.ConnectionId);
|
||||
|
||||
await ProcessSocketAsync(ws);
|
||||
try
|
||||
{
|
||||
await ProcessSocketAsync(ws);
|
||||
}
|
||||
finally
|
||||
{
|
||||
_logger.SocketClosed(_connection.ConnectionId);
|
||||
}
|
||||
}
|
||||
_logger.SocketClosed(_connection.ConnectionId);
|
||||
}
|
||||
|
||||
public async Task ProcessSocketAsync(WebSocket socket)
|
||||
|
|
|
|||
Loading…
Reference in New Issue