You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary:
mysql wasn't using OpenSSL error codes correctly; it was using
the return value of SSL_get_error rather than ERR_get_error, which made
for nonsensical errors.
Before this patch, with a cert signed by an unknown CA, this was the
error:
ERROR 2026 (HY000): SSL connection error: error:00000001:lib(0):func(0):reason(1)
after:
ERROR 2026 (HY000): SSL connection error: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
Test Plan: jenkins
Reviewers: steaphan, brianp, santoshb
Reviewed By: brianp, santoshb
0 commit comments