| Index: appengine/cmd/milo/buildbot/structs.go
|
| diff --git a/appengine/cmd/milo/buildbot/structs.go b/appengine/cmd/milo/buildbot/structs.go
|
| index 6b2a3be7e26bcc0db1bb57eaf52d80a65ec8e7a7..0cf245bc06c5acc613d471fca57f315a1dd5a45e 100644
|
| --- a/appengine/cmd/milo/buildbot/structs.go
|
| +++ b/appengine/cmd/milo/buildbot/structs.go
|
| @@ -62,9 +62,13 @@ type buildbotBuild struct {
|
| // This needs to be reflected. This can be either a String or a buildbotStep.
|
| Currentstep interface{} `json:"currentStep" gae:"-"`
|
| // We don't care about this one.
|
| - Eta interface{} `json:"eta" gae:"-"`
|
| - Logs [][]string `json:"logs" gae:"-"`
|
| - Number int `json:"number"`
|
| + Eta interface{} `json:"eta" gae:"-"`
|
| + Logs [][]string `json:"logs" gae:"-"`
|
| + Number int `json:"number"`
|
| + // This is a slice of tri-tuples of [property name, value, source].
|
| + // property name is always a string
|
| + // value can be a string or float
|
| + // source is optional, but is always a string if present
|
| Properties [][]interface{} `json:"properties" gae:"-"`
|
| Reason string `json:"reason"`
|
| Results *int `json:"results" gae:"-"`
|
|
|