Commit a801c881 authored by Andrew Gerrand's avatar Andrew Gerrand

misc/dashboard: add missing return value

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/7300084
parent 66c96f1a
...@@ -38,7 +38,7 @@ var failIgnore = map[string]bool{ ...@@ -38,7 +38,7 @@ var failIgnore = map[string]bool{
// have been retrieved from the datastore within that transaction. // have been retrieved from the datastore within that transaction.
func notifyOnFailure(c appengine.Context, com *Commit, builder string) error { func notifyOnFailure(c appengine.Context, com *Commit, builder string) error {
if failIgnore[builder] { if failIgnore[builder] {
return return nil
} }
// TODO(adg): implement notifications for packages // TODO(adg): implement notifications for packages
......
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