From 74dcdae16ab8da7db27c54e37a87e45029edae9f Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Mon, 27 Oct 2014 13:07:50 +0300 Subject: [PATCH] dashboard: fix update script It needs to remove perf results rather than build results. LGTM=adg R=adg CC=golang-codereviews https://golang.org/cl/164000043 --- dashboard/app/build/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/app/build/update.go b/dashboard/app/build/update.go index c276a6a3..1d22cc9f 100644 --- a/dashboard/app/build/update.go +++ b/dashboard/app/build/update.go @@ -58,7 +58,7 @@ func updateBenchmark(w http.ResponseWriter, r *http.Request) { continue } com.NeedsBenchmarking = true - com.ResultData = nil + com.PerfResults = nil if err := putCommit(c, com); err != nil { return err }