summaryrefslogtreecommitdiff
path: root/misc/dashboard
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-07-30 10:13:54 -0400
committerRuss Cox <rsc@golang.org>2012-07-30 10:13:54 -0400
commita1814d9900ea4ab53d06d3acc7b20ba12f7a9dd6 (patch)
tree1c36bf17a48f5c56c22164c196be0bdfdcb33cab /misc/dashboard
parente3ea25fe0e2bd1995c2f888d85ca64136784245b (diff)
downloadgo-a1814d9900ea4ab53d06d3acc7b20ba12f7a9dd6.tar.gz
misc/dashboard/codereview: add LastUpdate field to CL
To be filled in by a later CL. I deployed a test version to App Engine to work on setting the values, so there are a few records that have this field set already. That field is breaking the live version, so I have pushed a new copy with this 1-line change to the live version I assumed that appengine/datastore was like every other marshaling and unmarshaling package we have in Go (for example, encoding/gob, encoding/json, encoding/xml, and protobuf) and that if it loaded an unknown field it would just ignore it. Apparently not. Sorry. R=dsymonds TBR=dsymonds CC=golang-dev http://codereview.appspot.com/6454064
Diffstat (limited to 'misc/dashboard')
-rw-r--r--misc/dashboard/codereview/dashboard/cl.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/misc/dashboard/codereview/dashboard/cl.go b/misc/dashboard/codereview/dashboard/cl.go
index 181d2e40f..c9cee2452 100644
--- a/misc/dashboard/codereview/dashboard/cl.go
+++ b/misc/dashboard/codereview/dashboard/cl.go
@@ -49,6 +49,7 @@ type CL struct {
FirstLine string `datastore:",noindex"`
LGTMs []string
NotLGTMs []string
+ LastUpdate string
// Mail information.
Subject string `datastore:",noindex"`