Browse Source

Merge pull request #10477 from liusdu/liusdu_typo

delete duplicated word in registry/session.go
Arnaud Porterie 10 years ago
parent
commit
c98007f9d2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      registry/session.go

+ 1 - 1
registry/session.go

@@ -54,7 +54,7 @@ func NewSession(authConfig *AuthConfig, factory *utils.HTTPRequestFactory, endpo
 			return nil, err
 		}
 		if info.Standalone {
-			log.Debugf("Endpoint %s is eligible for private registry registry. Enabling decorator.", r.indexEndpoint.String())
+			log.Debugf("Endpoint %s is eligible for private registry. Enabling decorator.", r.indexEndpoint.String())
 			dec := utils.NewHTTPAuthDecorator(authConfig.Username, authConfig.Password)
 			factory.AddDecorator(dec)
 		}