1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 17:14:00 +00: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

@@ -11,6 +11,7 @@
<ItemGroup>
<PackageReference Include="AngleSharp" Version="0.9.10" />
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" Version="2.1.2" />
</ItemGroup>
<ItemGroup>

View File

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