-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
TLS config renegotiation setting (Issue #10871) #12354
TLS config renegotiation setting (Issue #10871) #12354
Conversation
Since this is a community submitted pull request, a Jenkins build has not been kicked off automatically. Can an Elastic organization member please verify the contents of this patch and then kick off a build manually? |
Hi @konstantinoskostis, we have found your signature in our records, but it seems like you have signed with a different e-mail than the one used in your Git commit. Can you please add both of these e-mails into your Github profile (they can be hidden), so we can match your e-mails to your Github profile? |
@konstantinoskostis Can you sign the CLA? |
jenkins test this please |
@ph hello! Let me sign it one more time and see if it works. |
@konstantinoskostis Not all email are actually valid in the PR, like this one:
|
911b710
to
5592fbe
Compare
@ph sorry about that... I edited the commit to fix the author and now CLA check has gone green! |
jenkins test this please |
CHANGELOG.next.asciidoc
Outdated
@@ -54,6 +54,8 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d | |||
|
|||
*Affecting all Beats* | |||
|
|||
- Fix a yaml typo in libbeat/common/transport/tlscommon/config.go {issue}10871[10871], {pull}12354[12354] |
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.
I think one line should be enough to describe the change. As the Changelog is intended for users, mentioning Golang packages and structs is not appropiate. I would reword this to "Fix typo in TLS renegotiation configuration and setting the option correctly".
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.
@kvch your proposition sounds and looks better, thank you! I updated the entry accordingly!
This commit fixes `yaml:"renegotation"` to `yaml:"renegotiation"` in libbeat/common/transport/tlscommon/config.go
This commit passes in tls.Config the Renegotiation setting which was missing. It also enhances tests regarding this setting. Fixes elastic#10871
This commit adds two entries to CHANGELOG.next.asciidoc since it fixes both a typo and a bug. The entries have been added since it is instructed to do so according to https://www.elastic.co/guide/en/beats/devguide/current/beats-contributing.html
5592fbe
to
cca0e88
Compare
Closes #10871 |
This Pull Request fixes the issue described at #10871