-
Notifications
You must be signed in to change notification settings - Fork 287
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
PR 522 followup #526
PR 522 followup #526
Conversation
cert = PEM_read_bio_X509(bio, NULL, pem_password_callback, NULL)) | ||
{ | ||
for (X509* cert = PEM_read_bio_X509(bio, NULL, pem_password_callback, NULL); cert != NULL; | ||
cert = PEM_read_bio_X509(bio, NULL, pem_password_callback, NULL)) { |
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.
Formatting change which was leading to Jenkins build failures on PR 522. The format check was only failing on Ubuntu Bionic instances so it's worth validating that we're okay on the other platforms as well... last thing we need is to introduce a failure somewhere else via this change.
Cluster cluster = default_cluster().with_ssl(ssl); | ||
connect(cluster); | ||
write_and_read(); | ||
} |
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.
Simple integration test for the functionality added in PR 522.
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
Follow-up to PR 522. Fix the formatting issue that was breaking the Jenkins build for Ubuntu Bionic and add an integration test to validate the change.