]> Cypherpunks repositories - gostls13.git/commitdiff
misc/dashboard: add missing return value
authorAndrew Gerrand <adg@golang.org>
Mon, 11 Feb 2013 07:01:18 +0000 (18:01 +1100)
committerAndrew Gerrand <adg@golang.org>
Mon, 11 Feb 2013 07:01:18 +0000 (18:01 +1100)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/7300084

misc/dashboard/app/build/notify.go

index 0eadb909f36009c80f899af31eb0709ed2acf31a..52b91f6c127b9a4ad2ab7e1b02680bdf8e77540b 100644 (file)
@@ -38,7 +38,7 @@ var failIgnore = map[string]bool{
 // have been retrieved from the datastore within that transaction.
 func notifyOnFailure(c appengine.Context, com *Commit, builder string) error {
        if failIgnore[builder] {
-               return
+               return nil
        }
 
        // TODO(adg): implement notifications for packages