-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Do not load SSLService in plugin contructor #49667
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,6 +122,14 @@ public class SSLService { | |
private final SetOnce<SSLConfiguration> transportSSLConfiguration = new SetOnce<>(); | ||
private final Environment env; | ||
|
||
/** | ||
* Create a new SSLService using the {@code Settings} from {@link Environment#settings()}. | ||
* @see #SSLService(Settings, Environment) | ||
*/ | ||
public SSLService(Environment environment) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we still need the other ctor? I only see 2 non test uses of the other ctor. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't need it, but there's a lot of test uses that would cause this PR to get quite big. I'm going to remove the old constructor in a follow-up PR. |
||
this(environment.settings(), environment); | ||
} | ||
|
||
/** | ||
* Create a new SSLService that parses the settings for the ssl contexts that need to be created, creates them, and then caches them | ||
* for use later | ||
|
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.
nit: this looks like the only use of setSslService, can it be removed and just set the setonce member directly?
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.
LocalStateCompositeXPackPlugin
does crazy stuff.This is the only use of the method, but we have multiple implementations :(