fix typo in errcheck for response parsing logic in CreateTunnel routine
This commit is contained in:
parent
e846943e66
commit
a36fa07aba
|
@ -93,7 +93,7 @@ func (r *RESTClient) CreateTunnel(name string, tunnelSecret []byte) (*TunnelWith
|
||||||
switch resp.StatusCode {
|
switch resp.StatusCode {
|
||||||
case http.StatusOK:
|
case http.StatusOK:
|
||||||
var tunnel TunnelWithToken
|
var tunnel TunnelWithToken
|
||||||
if serdeErr := parseResponse(resp.Body, &tunnel); err != nil {
|
if serdeErr := parseResponse(resp.Body, &tunnel); serdeErr != nil {
|
||||||
return nil, serdeErr
|
return nil, serdeErr
|
||||||
}
|
}
|
||||||
return &tunnel, nil
|
return &tunnel, nil
|
||||||
|
|
Loading…
Reference in New Issue