go.tools/dashboard: include builder in "invalid key" error message

LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://golang.org/cl/77250043
This commit is contained in:
Andrew Gerrand 2014-03-18 16:02:54 +11:00
Родитель 508fc58c4e
Коммит 86d37adf0f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -381,7 +381,7 @@ func AuthHandler(h dashHandler) http.HandlerFunc {
key := r.FormValue("key")
builder := r.FormValue("builder")
if r.Method == "POST" && !validKey(c, key, builder) {
err = errors.New("invalid key: " + key)
err = fmt.Errorf("invalid key %q for builder %q", key, builder)
}
// Call the original HandlerFunc and return the response.