Don't return a nil array and a nil error if the Tags endpoint cannot be found
Signed-off-by: Richard Scothern <richard.scothern@gmail.com>
This commit is contained in:
parent
924913b4c3
commit
f36ab5a834
1 changed files with 0 additions and 2 deletions
|
@ -211,8 +211,6 @@ func (ms *manifests) Tags() ([]string, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return tagsResponse.Tags, nil
|
return tagsResponse.Tags, nil
|
||||||
} else if resp.StatusCode == http.StatusNotFound {
|
|
||||||
return nil, nil
|
|
||||||
}
|
}
|
||||||
return nil, handleErrorResponse(resp)
|
return nil, handleErrorResponse(resp)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue