mirror of
https://github.com/netbirdio/dex.git
synced 2026-05-22 18:43:53 -07:00
fix: disable tls in tests
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user