Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Skip Verify should be SSLSkipVerify Instead the mysql backend config. #1191

Merged
merged 2 commits into from
Jun 14, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/raft/http_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func setupHttpClient() error {
}

tlsConfig := &tls.Config{
InsecureSkipVerify: config.Config.MySQLOrchestratorSSLSkipVerify,
InsecureSkipVerify: config.Config.SSLSkipVerify,
}
if config.Config.UseSSL {
caPool, err := ssl.ReadCAFile(config.Config.SSLCAFile)
Expand Down