Explorar el Código

Add missing error check

Brendan Abolivier hace 6 años
padre
commit
0025d65d89
Firmado por: Brendan Abolivier <contact@brendanabolivier.com> ID clave GPG: 8EF1500759F70623
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3
    0
      src/grafana/dashboards.go

+ 3
- 0
src/grafana/dashboards.go Ver fichero

@@ -72,6 +72,9 @@ func (d *Dashboard) UnmarshalJSON(b []byte) (err error) {
72 72
 // response body.
73 73
 func (c *Client) GetDashboardsURIs() (URIs []string, err error) {
74 74
 	resp, err := c.request("GET", "search", nil)
75
+	if err != nil {
76
+		return
77
+	}
75 78
 
76 79
 	var respBody []dbSearchResponse
77 80
 	if err = json.Unmarshal(resp, &respBody); err != nil {