Update the LastActive for reserved connections

This commit is contained in:
David Fowler 2016-10-01 15:59:20 -07:00
parent 613ac2d6c3
commit 1ad1120c41
1 changed files with 1 additions and 0 deletions

View File

@ -208,6 +208,7 @@ namespace Microsoft.AspNetCore.Sockets
if (connectionState.Connection.Channel == null)
{
connectionState.Connection.Channel = new HttpChannel(_channelFactory);
connectionState.LastSeen = DateTimeOffset.UtcNow;
}
}