Explorar el Código

Fix wrong zero-value

Brendan Abolivier hace 7 años
padre
commit
864f1127db
Firmado por: Brendan Abolivier <contact@brendanabolivier.com> ID clave GPG: 8EF1500759F70623
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/metrics-alerting/process/process.go

+ 1
- 1
src/metrics-alerting/process/process.go Ver fichero

@@ -43,7 +43,7 @@ func Process(
43 43
 		}
44 44
 		return nil
45 45
 	} else {
46
-		return dispatchType(client, script, alerter, nil)
46
+		return dispatchType(client, script, alerter, script_data.Data{})
47 47
 	}
48 48
 }
49 49