hotfix: nil pointer uppon some registry error
							parent
							
								
									508e152416
								
							
						
					
					
						commit
						7e78627908
					
				| 
						 | 
					@ -162,10 +162,10 @@ func (r *Registry) GetRemoteTags(registries []string, repository string, token [
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		req.Header.Set("Authorization", "Token "+strings.Join(token, ", "))
 | 
							req.Header.Set("Authorization", "Token "+strings.Join(token, ", "))
 | 
				
			||||||
		res, err := r.client.Do(req)
 | 
							res, err := r.client.Do(req)
 | 
				
			||||||
		utils.Debugf("Got status code %d from %s", res.StatusCode, endpoint)
 | 
					 | 
				
			||||||
		if err != nil {
 | 
							if err != nil {
 | 
				
			||||||
			return nil, err
 | 
								return nil, err
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
							utils.Debugf("Got status code %d from %s", res.StatusCode, endpoint)
 | 
				
			||||||
		defer res.Body.Close()
 | 
							defer res.Body.Close()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		if res.StatusCode != 200 && res.StatusCode != 404 {
 | 
							if res.StatusCode != 200 && res.StatusCode != 404 {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue