Browse Source

Fix wrong zero-value

Brendan Abolivier 7 years ago
parent
commit
864f1127db
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/metrics-alerting/process/process.go

+ 1
- 1
src/metrics-alerting/process/process.go View File

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