-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add SSL support for Remote.Hosting #345
Add SSL support for Remote.Hosting #345
Conversation
in that case, might be better off not doing this until we actually need additional transports. |
Updated the PR comment to explain why configuration binding doesn't work |
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.
Left some thoughts
public override string TransportId { get; } | ||
protected override void Build(System.Text.StringBuilder builder) { } | ||
} | ||
public sealed class DotNettyUdpTransportOptions : Akka.Remote.Hosting.DotNettyTransportOptions |
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.
Remove - not supported in Akka.Remote and most likely won't be.
{ | ||
public RemoteOptions() { } | ||
public System.Collections.Generic.List<Akka.Remote.Hosting.RemoteTransportOptions> EnabledTransports { get; set; } |
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.
You know, I'm thinking that even though we could support this - it's probably a footgun for 99.9999999999999% of users. Make super-users use HOCON if they want this feature.
public abstract string TransportId { get; } | ||
protected abstract void Build(System.Text.StringBuilder builder); | ||
} | ||
public sealed class SslCertificateOptions |
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.
LGTM
Remove multi-transport support |
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.
LGTM
Fixes #327
Changes