Return errors in mongodb SSL/TLS configuration (#4066)

This commit is contained in:
Daniel Nelson 2018-04-23 13:29:12 -07:00 committed by GitHub
parent c7b3667ac4
commit bf0c59f56c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -151,6 +151,9 @@ func (m *MongoDB) gatherServer(server *Server, acc telegraf.Accumulator) error {
} else {
tlsConfig, err = internal.GetTLSConfig(
m.SSLCert, m.SSLKey, m.SSLCA, m.InsecureSkipVerify)
if err != nil {
return err
}
}
// If configured to use TLS, add a dial function