Parcourir la source

Fix built + typo

Brendan Abolivier il y a 6 ans
Parent
révision
192189f53b
Signé par: Brendan Abolivier <contact@brendanabolivier.com> ID de la clé GPG: 8EF1500759F70623
2 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 2
    1
      src/grafana/dashboards.go
  2. 1
    1
      src/pusher/webhook.go

+ 2
- 1
src/grafana/dashboards.go Voir le fichier

167
 
167
 
168
 	if respBody.Status != "success" && isHttpUnknownError {
168
 	if respBody.Status != "success" && isHttpUnknownError {
169
 		// Get the dashboard's slug for logging
169
 		// Get the dashboard's slug for logging
170
-		slug, err := helpers.GetDashboardSlug(contentJSON)
170
+		var slug string
171
+		slug, err = helpers.GetDashboardSlug(contentJSON)
171
 		if err != nil {
172
 		if err != nil {
172
 			return
173
 			return
173
 		}
174
 		}

+ 1
- 1
src/pusher/webhook.go Voir le fichier

109
 			logrus.WithFields(logrus.Fields{
109
 			logrus.WithFields(logrus.Fields{
110
 				"error":    err,
110
 				"error":    err,
111
 				"filename": fileToPush,
111
 				"filename": fileToPush,
112
-			}).Error("Failed push the file to Grafana")
112
+			}).Error("Failed to push the file to Grafana")
113
 
113
 
114
 			continue
114
 			continue
115
 		}
115
 		}