-
Notifications
You must be signed in to change notification settings - Fork 7
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 certificate on CI #158
Conversation
@@ -133,8 +133,8 @@ func (j *JSONRPC) setupHTTP() error { | |||
} | |||
|
|||
if j.config.TLSCertFile != "" && j.config.TLSKeyFile != "" { | |||
j.logger.Info("https cert file", j.config.TLSCertFile) | |||
j.logger.Info("https key file", j.config.TLSKeyFile) | |||
j.logger.Info("TLS", "cert file", j.config.TLSCertFile) |
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.
should this log line even exist?
j.logger.Info("https cert file", j.config.TLSCertFile) | ||
j.logger.Info("https key file", j.config.TLSKeyFile) | ||
j.logger.Info("TLS", "cert file", j.config.TLSCertFile) | ||
j.logger.Info("TLS", "key file", j.config.TLSKeyFile) |
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.
The same question applies?
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.
Yes, because that way we can see what files are exactly used as certificate files. It is important for troubleshooting, if something is not working we can quickly check what files are given as certificate files.
Description
Please provide a detailed description of what was done in this PR
Changes include
Breaking changes
Please complete this section if any breaking changes have been made, otherwise delete it
Checklist
Testing
Manual tests
Please complete this section if you ran manual tests for this functionality, otherwise delete it
Documentation update
Please link the documentation update PR in this section if it's present, otherwise delete it
Additional comments
Please post additional comments in this section if you have them, otherwise delete it