소스 검색

Fix wrong zero-value

Brendan Abolivier 7 년 전
부모
커밋
864f1127db
로그인 계정: Brendan Abolivier <contact@brendanabolivier.com> GPG 키 ID: 8EF1500759F70623
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/metrics-alerting/process/process.go

+ 1
- 1
src/metrics-alerting/process/process.go 파일 보기

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