Merge pull request #2 from CanTireInnovations/abazhal/docker-tls

Fixed code formatting
This commit is contained in:
Anton Bazhal 2016-03-22 14:27:40 -04:00
commit bb9ab6964c
1 changed files with 3 additions and 3 deletions

View File

@ -92,15 +92,15 @@ func (d *Docker) Gather(acc telegraf.Accumulator) error {
c, err = docker.NewClient(d.Endpoint) c, err = docker.NewClient(d.Endpoint)
} else { } else {
if d.TLSCert == "" { if d.TLSCert == "" {
return errors.New("tls_cert must be configured when tls_enable is set to true"); return errors.New("tls_cert must be configured when tls_enable is set to true")
} }
if d.TLSKey == "" { if d.TLSKey == "" {
return errors.New("tls_key must be configured when tls_enable is set to true"); return errors.New("tls_key must be configured when tls_enable is set to true")
} }
if d.TLSCA == "" { if d.TLSCA == "" {
return errors.New("tls_ca must be configured when tls_enable is set to true"); return errors.New("tls_ca must be configured when tls_enable is set to true")
} }
c, err = docker.NewTLSClient(d.Endpoint, d.TLSCert, d.TLSKey, d.TLSCA) c, err = docker.NewTLSClient(d.Endpoint, d.TLSCert, d.TLSKey, d.TLSCA)