-
Notifications
You must be signed in to change notification settings - Fork 91
Open
Description
We've used a simple method that resulted in a memory leak in our application:
private bool CompareEntities<T>(T object1, T object2)
{
var comparer = new ObjectsComparer.Comparer<T>();
return comparer.Compare(object1, object2, out IEnumerable<Difference> _);
}
The method was used in a background job.
Metadata
Metadata
Assignees
Labels
No labels
