You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See comment at #44681 (comment). When too many collisions are seen in a Dictionary<string, ...>(StringComparer.OrdinalIgnoreCase) or HashSet<string>(StringComparer.OrdinalIgnoreCase), we'll accidentally fall back to StringComparer.Ordinal after re-bucketing entries.
This is a regression from netcoreapp3.1 and should be serviced for net 5.0.x.
The text was updated successfully, but these errors were encountered:
See comment at #44681 (comment). When too many collisions are seen in a
Dictionary<string, ...>(StringComparer.OrdinalIgnoreCase)
orHashSet<string>(StringComparer.OrdinalIgnoreCase)
, we'll accidentally fall back toStringComparer.Ordinal
after re-bucketing entries.This is a regression from netcoreapp3.1 and should be serviced for net 5.0.x.
The text was updated successfully, but these errors were encountered: