Pārlūkot izejas kodu

Fix wrong zero-value

Brendan Abolivier 7 gadus atpakaļ
vecāks
revīzija
864f1127db
Parakstījis: Brendan Abolivier <contact@brendanabolivier.com> GPG atslēgas ID: 8EF1500759F70623
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      src/metrics-alerting/process/process.go

+ 1
- 1
src/metrics-alerting/process/process.go Parādīt failu

@@ -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