Secondary listeners need to allocate their own memory pool

This commit is contained in:
Louis DeJardin 2015-09-18 17:17:28 -07:00
parent 6db3d9e645
commit 5ba1b9fb3c
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
{
protected ListenerSecondary(ServiceContext serviceContext) : base(serviceContext)
{
Memory2 = new MemoryPool2();
}
UvPipeHandle DispatchPipe { get; set; }