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
Version Information
Version of Akka.NET?
1.4.21
Which Akka.NET Modules?
Akka.DistributedData
Describe the bug
I believe the max-delta-elements will not be fully respected due to the operator used. Since this is greater than or equal to max-delta-elements, when it hits max elements it will discard the delta update. I think it should honour the max elements, and discard for any amount over. This is how Distributed Pub Sub seems to behave
Version Information
Version of Akka.NET?
1.4.21
Which Akka.NET Modules?
Akka.DistributedData
Describe the bug
I believe the max-delta-elements will not be fully respected due to the operator used. Since this is greater than or equal to max-delta-elements, when it hits max elements it will discard the delta update. I think it should honour the max elements, and discard for any amount over. This is how Distributed Pub Sub seems to behave
To Reproduce
akka.net/src/contrib/cluster/Akka.DistributedData/DeltaPropagationSelector.cs
Line 113 in f2b99b4
Links to working reproductions on Github / Gitlab are very much appreciated
Expected behavior
It should be just using greater than >
Actual behavior
Its using >=
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
Are you running on Linux? Windows? Docker? Which version of .NET?
Linux
Additional context
I have a PR ready to go if you agree this needs amending (didn't want to just assume a change was required)
The text was updated successfully, but these errors were encountered: