-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Make DisabledBufferPool as the default buffer pool implementation for UDP #5331
Make DisabledBufferPool as the default buffer pool implementation for UDP #5331
Conversation
….com:Arkatufus/akka.net into #5325_Make_DisabledBufferPool_as_UDP_default
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to change the API here
@@ -3889,14 +3889,12 @@ namespace Akka.IO | |||
} | |||
public class UdpSettings | |||
{ | |||
public UdpSettings(string bufferPoolConfigPath, bool traceLogging, int initialSocketAsyncEventArgs, int directBufferSize, int maxDirectBufferPoolSize, int batchReceiveLimit, string managementDispatcher, string fileIoDispatcher) { } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, that's a breaking change - should probably leave the C# settings all there and just change the defaults to use the disabled buffer pool. No need to remove the feature entirely - we just don't want it as the default until it's fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its byterot, i'm not removing it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Brought back the old constructor, marking it as obsolete
close #5325 - patches issue by disabling it.