s/getUrl/getURL
golang prefers URL not Url Signed-off-by: Michael Kelly <mkelly@arista.com>
This commit is contained in:
parent
502a2d0d4a
commit
6c99a9b99d
1 changed files with 3 additions and 3 deletions
|
@ -177,7 +177,7 @@ func (cli *client) get(resource, name string, v interface{}) error {
|
|||
return cli.getResource(cli.apiVersion, cli.namespace, resource, name, v)
|
||||
}
|
||||
|
||||
func (cli *client) getUrl(url string, v interface{}) error {
|
||||
func (cli *client) getURL(url string, v interface{}) error {
|
||||
resp, err := cli.client.Get(url)
|
||||
if err != nil {
|
||||
return err
|
||||
|
@ -190,14 +190,14 @@ func (cli *client) getUrl(url string, v interface{}) error {
|
|||
}
|
||||
|
||||
func (cli *client) getResource(apiVersion, namespace, resource, name string, v interface{}) error {
|
||||
return cli.getUrl(cli.urlFor(apiVersion, namespace, resource, name), v)
|
||||
return cli.getURL(cli.urlFor(apiVersion, namespace, resource, name), v)
|
||||
}
|
||||
|
||||
func (cli *client) listN(resource string, v interface{}, n int) error {
|
||||
params := url.Values{}
|
||||
params.Add("limit", fmt.Sprintf("%d", n))
|
||||
u := cli.urlForWithParams(cli.apiVersion, cli.namespace, resource, "", params)
|
||||
return cli.getUrl(u, v)
|
||||
return cli.getURL(u, v)
|
||||
}
|
||||
|
||||
func (cli *client) list(resource string, v interface{}) error {
|
||||
|
|
Reference in a new issue