File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ describe('ssl', function() {
1313 before ( function ( done ) {
1414 if ( process . env . MAXSCALE_VERSION ) this . skip ( ) ;
1515 if (
16- process . platform === 'win32' &&
1716 tls . DEFAULT_MIN_VERSION === 'TLSv1.2' &&
18- ( ( shareConn . info . isMariaDB ( ) && ! shareConn . info . hasMinVersion ( 10 , 4 , 0 ) ) ||
17+ ( ( process . platform === 'win32' && shareConn . info . isMariaDB ( ) && ! shareConn . info . hasMinVersion ( 10 , 4 , 0 ) ) ||
1918 ( ! shareConn . info . isMariaDB ( ) && ! shareConn . info . hasMinVersion ( 8 , 0 , 0 ) ) )
2019 ) {
21- //TLSv1.2 is supported on windows only since MariaDB 10.4 and MySQL 8.0
20+ //TLSv1.2 is supported on windows only since MariaDB 10.4
21+ //TLSv1.2 is supported in MySQL only since 8.0 (unix/windows)
2222 //so if testing with Node.js 12, force possible TLS1.1
2323 tls . DEFAULT_MIN_VERSION = 'TLSv1.1' ;
2424 }
You can’t perform that action at this time.
0 commit comments