mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00:00
switch kestrel back to libuv til bugs are fixed
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.2" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv" Version="2.1.2" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -10,6 +10,8 @@ namespace Bit.Identity
|
||||
WebHost
|
||||
.CreateDefaultBuilder(args)
|
||||
.UseStartup<Startup>()
|
||||
// ref: https://github.com/aspnet/KestrelHttpServer/issues/2694
|
||||
.UseLibuv()
|
||||
.Build()
|
||||
.Run();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user