Added missing attributes to api search calls:
- Added an argument to the call() method in order to control the auth sharing - Enabled it only for search. Pulls and pushes were enabled already. - Grouped a few variable declarations Docker-DCO-1.1-Signed-off-by: Roberto Hashioka <roberto.hashioka@docker.com> (github: rogaha)
This commit is contained in:
parent
275109a6ad
commit
4fe7a141bf
1 changed files with 4 additions and 0 deletions
|
@ -617,6 +617,10 @@ func (r *Registry) SearchRepositories(term string) (*SearchResults, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
if r.authConfig != nil && len(r.authConfig.Username) > 0 {
|
||||||
|
req.SetBasicAuth(r.authConfig.Username, r.authConfig.Password)
|
||||||
|
}
|
||||||
|
req.Header.Set("X-Docker-Token", "true")
|
||||||
res, err := r.client.Do(req)
|
res, err := r.client.Do(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
Loading…
Reference in a new issue