Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
moncho committed May 18, 2016
1 parent fa2531c commit e040daf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
)

const (
//DefaultConnectionTimeout is the timeout for connecting with the Docker daemon
DefaultConnectionTimeout = 32 * time.Second
)

Expand Down Expand Up @@ -86,7 +87,7 @@ func ConnectToDaemon(env *DockerEnv) (*DockerDaemon, error) {
if err != nil {
return nil, err
}
var tlsConfig *tls.Config = nil
var tlsConfig *tls.Config
if dockerCertPath := env.DockerCertPath; dockerCertPath != "" {
options := drytls.Options{
CAFile: filepath.Join(dockerCertPath, "ca.pem"),
Expand Down

0 comments on commit e040daf

Please sign in to comment.