Removed all potential debug password prints, both plaintext and encoded (#537)

This commit is contained in:
Sebastiaan Tammer 2020-05-09 20:21:36 +02:00 committed by GitHub
parent 46f43764d2
commit b34a2f968d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -13,10 +13,10 @@ func GetPullOptions(imageName string) (types.ImagePullOptions, error) {
return types.ImagePullOptions{}, err
}
log.Debugf("Got auth value: %s", auth)
if auth == "" {
return types.ImagePullOptions{}, nil
}
log.Debugf("Got auth value")
return types.ImagePullOptions{
RegistryAuth: auth,