Skip to content
Snippets Groups Projects
Unverified Commit 3f7135b9 authored by Mark Sagi-Kazar's avatar Mark Sagi-Kazar
Browse files

fix: disable tls in tests

parent c7fd9620
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,9 @@ func mysqlTestConfig(host string, port uint64) *MySQL {
Port: uint16(port),
},
SSL: SSL{
Mode: mysqlSSLSkipVerify,
// This was originally mysqlSSLSkipVerify. It lead to handshake errors.
// See https://github.com/go-sql-driver/mysql/issues/1635 for more details.
Mode: mysqlSSLFalse,
},
params: map[string]string{
"innodb_lock_wait_timeout": "1",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment