@@ -19,11 +19,12 @@ import (
19
19
"bytes"
20
20
"encoding/json"
21
21
"fmt"
22
- log "github.com/Sirupsen/logrus"
23
- "github.com/contiv/netplugin/mgmtfn/k8splugin/cniapi"
24
22
"io/ioutil"
25
23
"net"
26
24
"net/http"
25
+
26
+ log "github.com/Sirupsen/logrus"
27
+ "github.com/contiv/netplugin/mgmtfn/k8splugin/cniapi"
27
28
)
28
29
29
30
const (
@@ -71,10 +72,10 @@ func (c *NWClient) AddPod(podInfo interface{}) (*cniapi.RspAddPod, error) {
71
72
72
73
switch {
73
74
case r .StatusCode == int (404 ):
74
- return nil , fmt .Errorf ("Page not found! " )
75
+ return nil , fmt .Errorf ("page not found" )
75
76
76
77
case r .StatusCode == int (403 ):
77
- return nil , fmt .Errorf ("Access denied! " )
78
+ return nil , fmt .Errorf ("access denied" )
78
79
79
80
case r .StatusCode == int (500 ):
80
81
info , err := ioutil .ReadAll (r .Body )
@@ -123,9 +124,9 @@ func (c *NWClient) DelPod(podInfo interface{}) error {
123
124
124
125
switch {
125
126
case r .StatusCode == int (404 ):
126
- return fmt .Errorf ("Page not found! " )
127
+ return fmt .Errorf ("page not found" )
127
128
case r .StatusCode == int (403 ):
128
- return fmt .Errorf ("Access denied! " )
129
+ return fmt .Errorf ("access denied" )
129
130
case r .StatusCode != int (200 ):
130
131
log .Errorf ("GET Status '%s' status code %d \n " , r .Status , r .StatusCode )
131
132
return fmt .Errorf ("%s" , r .Status )
0 commit comments