Skip to content

Commit 0e4305a

Browse files
author
Erik Hollensbe
committed
mgmtfn,netmaster: fix golint warnings about string errors
Signed-off-by: Erik Hollensbe <[email protected]>
1 parent 7269e08 commit 0e4305a

File tree

5 files changed

+19
-16
lines changed

5 files changed

+19
-16
lines changed

mgmtfn/k8splugin/contivk8s/clients/network.go

+7-6
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ import (
1919
"bytes"
2020
"encoding/json"
2121
"fmt"
22-
log "github.com/Sirupsen/logrus"
23-
"github.com/contiv/netplugin/mgmtfn/k8splugin/cniapi"
2422
"io/ioutil"
2523
"net"
2624
"net/http"
25+
26+
log "github.com/Sirupsen/logrus"
27+
"github.com/contiv/netplugin/mgmtfn/k8splugin/cniapi"
2728
)
2829

2930
const (
@@ -71,10 +72,10 @@ func (c *NWClient) AddPod(podInfo interface{}) (*cniapi.RspAddPod, error) {
7172

7273
switch {
7374
case r.StatusCode == int(404):
74-
return nil, fmt.Errorf("Page not found!")
75+
return nil, fmt.Errorf("page not found")
7576

7677
case r.StatusCode == int(403):
77-
return nil, fmt.Errorf("Access denied!")
78+
return nil, fmt.Errorf("access denied")
7879

7980
case r.StatusCode == int(500):
8081
info, err := ioutil.ReadAll(r.Body)
@@ -123,9 +124,9 @@ func (c *NWClient) DelPod(podInfo interface{}) error {
123124

124125
switch {
125126
case r.StatusCode == int(404):
126-
return fmt.Errorf("Page not found!")
127+
return fmt.Errorf("page not found")
127128
case r.StatusCode == int(403):
128-
return fmt.Errorf("Access denied!")
129+
return fmt.Errorf("access denied")
129130
case r.StatusCode != int(200):
130131
log.Errorf("GET Status '%s' status code %d \n", r.Status, r.StatusCode)
131132
return fmt.Errorf("%s", r.Status)

mgmtfn/k8splugin/kubeClient.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@ import (
2121
"crypto/x509"
2222
"encoding/json"
2323
"fmt"
24+
"io/ioutil"
25+
"net/http"
26+
"sync"
27+
2428
log "github.com/Sirupsen/logrus"
2529
"github.com/contiv/netplugin/core"
2630
"golang.org/x/net/context"
2731
"golang.org/x/net/context/ctxhttp"
28-
"io/ioutil"
29-
"net/http"
30-
"sync"
3132
)
3233

3334
const (
@@ -141,9 +142,9 @@ func (c *APIClient) fetchPodLabels(ns, name string) error {
141142
defer r.Body.Close()
142143
switch {
143144
case r.StatusCode == int(404):
144-
return fmt.Errorf("Page not found!")
145+
return fmt.Errorf("page not found")
145146
case r.StatusCode == int(403):
146-
return fmt.Errorf("Access denied!")
147+
return fmt.Errorf("access denied")
147148
case r.StatusCode != int(200):
148149
log.Errorf("GET Status '%s' status code %d \n", r.Status, r.StatusCode)
149150
return fmt.Errorf("%s", r.Status)

netmaster/master/bgp.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ package master
1717

1818
import (
1919
"errors"
20+
2021
log "github.com/Sirupsen/logrus"
2122
"github.com/contiv/netplugin/core"
2223
"github.com/contiv/netplugin/netmaster/intent"
@@ -30,7 +31,7 @@ func AddBgp(stateDriver core.StateDriver, bgpCfg *intent.ConfigBgp) error {
3031
aci, _ := IsAciConfigured()
3132
if aci {
3233
log.Errorf("Invalid configuration. Not supported in ACI fabric mode.")
33-
return errors.New("Not supported in ACI fabric mode.")
34+
return errors.New("not supported in ACI fabric mode")
3435
}
3536
bgpState := &mastercfg.CfgBgpState{}
3637
bgpState.Hostname = bgpCfg.Hostname

netmaster/objApi/apiController.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1865,9 +1865,9 @@ func (ac *APIController) BgpGetOper(bgp *contivModel.BgpInspect) error {
18651865

18661866
switch {
18671867
case r.StatusCode == int(404):
1868-
return errors.New("Page not found!")
1868+
return errors.New("page not found")
18691869
case r.StatusCode == int(403):
1870-
return errors.New("Access denied!")
1870+
return errors.New("access denied")
18711871
case r.StatusCode == int(500):
18721872
response, err := ioutil.ReadAll(r.Body)
18731873
if err != nil {

netmaster/objApi/infraproxy.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ func httpPost(url string, jdata interface{}) (*gwResp, error) {
9393

9494
switch {
9595
case r.StatusCode == int(404):
96-
return nil, errors.New("Page not found!")
96+
return nil, errors.New("page not found")
9797
case r.StatusCode == int(403):
98-
return nil, errors.New("Access denied!")
98+
return nil, errors.New("access denied")
9999
case r.StatusCode != int(200):
100100
log.Debugf("POST Status '%s' status code %d \n", r.Status, r.StatusCode)
101101
return nil, errors.New(r.Status)

0 commit comments

Comments
 (0)