fix(sql): remove ssl=true (#461)

This commit is contained in:
Silvan 2020-07-13 17:34:45 +02:00 committed by GitHub
parent 547d55a2c8
commit cc7556aaa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,6 @@ func (s *SQL) connectionString() string {
if s.SSL.Mode != sslDisabledMode {
fields = append(fields, []string{
"ssl=true",
"sslrootcert=" + s.SSL.RootCert,
"sslcert=" + s.SSL.Cert,
"sslkey=" + s.SSL.Key,