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
We have forever loop in DotNetty.Transport.Channels.Groups.CombinedEnumerator.MoveNext() because in .NET 8
an empty ReadOnlyCollection<T> returns a singleton empty enumerator (dotnet/runtime#76097).
We have forever loop in
DotNetty.Transport.Channels.Groups.CombinedEnumerator.MoveNext()
because in .NET 8an empty
ReadOnlyCollection<T>
returns a singleton empty enumerator (dotnet/runtime#76097).So there could be two identical enumerators here:
DotNetty/src/DotNetty.Transport/Channels/Groups/CombinedEnumerator.cs
Lines 12 to 13 in 78c5757
Which leads to an endless loop here:
DotNetty/src/DotNetty.Transport/Channels/Groups/CombinedEnumerator.cs
Lines 33 to 47 in 78c5757
The text was updated successfully, but these errors were encountered: