Skip certificate check (don't error out on self-signed certs)

This commit is contained in:
shin- 2013-05-29 11:24:50 -07:00
parent de0a48bd6f
commit 1c817913ee
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package registry
import (
"bytes"
"crypto/tls"
"encoding/json"
"errors"
"fmt"
@ -164,6 +165,7 @@ func (r *Registry) GetRemoteTags(registries []string, repository string, token [
if err != nil {
return nil, err
}
utils.Debugf("Got status code %d from %s", res.StatusCode, endpoint)
defer res.Body.Close()