-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Memory leak when build X509 chain #74200
Comments
cc: @bartonjs |
Tagging subscribers to this area: @dotnet/area-system-security, @vcsjones Issue DetailsI have .net standard project and my project is running on Linux using (X509Chain x509Chain = new X509Chain())
} When running with a high load, the memory of the process starts at %MEM = 1.1 and after a few hours, the %MEM is 2.0 Any help will be highly appreciated.
|
This seems like a duplicate of #55672. Based on our testing, there are no leaks, just a combination of .NET Server GC and glibc's local-buffered |
I have .net standard project and my project is running on Linux
I can see that there is a memory leak problem on the following lines:
using (X509Chain x509Chain = new X509Chain())
{
x509Chain.ChainPolicy.RevocationMode = X509RevocationMode.NoCheck;
x509Chain.ChainPolicy.ExtraStore.AddRange(_trustedStore.ToArray());
}
When running with a high load, the memory of the process starts at %MEM = 1.1 and after a few hours, the %MEM is 2.0
Any help will be highly appreciated.
The text was updated successfully, but these errors were encountered: