Commit b0eb68ad authored by Andrew Gerrand's avatar Andrew Gerrand

dashboard: send builder in commit POST query string

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5498055
parent e83cd7f7
...@@ -120,7 +120,8 @@ func (b *Builder) recordResult(ok bool, pkg, hash, goHash, buildLog string) erro ...@@ -120,7 +120,8 @@ func (b *Builder) recordResult(ok bool, pkg, hash, goHash, buildLog string) erro
"OK": ok, "OK": ok,
"Log": buildLog, "Log": buildLog,
} }
return dash("POST", "result", url.Values{"key": {b.key}}, req, nil) args := url.Values{"key": {b.key}, "builder": {b.name}}
return dash("POST", "result", args, req, nil)
} }
// packages fetches a list of package paths from the dashboard // packages fetches a list of package paths from the dashboard
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment