1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-08 11:24:33 -05:00

switch kestrel back to libuv til bugs are fixed

This commit is contained in:
Kyle Spearrin
2018-08-06 16:42:55 -04:00
parent 67830e12c8
commit e6aaddaed1
16 changed files with 25 additions and 1 deletions

View File

@ -13,6 +13,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" Version="2.1.2" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.1" />
</ItemGroup>

View File

@ -10,6 +10,8 @@ namespace Bit.Admin
WebHost
.CreateDefaultBuilder(args)
.UseStartup<Startup>()
// ref: https://github.com/aspnet/KestrelHttpServer/issues/2694
.UseLibuv()
.Build()
.Run();
}