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:
@ -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>
|
||||
|
||||
|
@ -10,6 +10,8 @@ namespace Bit.Admin
|
||||
WebHost
|
||||
.CreateDefaultBuilder(args)
|
||||
.UseStartup<Startup>()
|
||||
// ref: https://github.com/aspnet/KestrelHttpServer/issues/2694
|
||||
.UseLibuv()
|
||||
.Build()
|
||||
.Run();
|
||||
}
|
||||
|
Reference in New Issue
Block a user