Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: milo/buildsource/buildbucket/struct.go

Issue 2977863002: [milo] Refactor all html knowledge out of backends. (Closed)
Patch Set: now with case insensitivity Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « milo/buildsource/buildbucket/pubsub.go ('k') | milo/buildsource/builder.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/buildsource/buildbucket/struct.go
diff --git a/milo/buildsource/buildbucket/struct.go b/milo/buildsource/buildbucket/struct.go
index 0a234747da38a3f917010bf6945b8463bd50d9c1..c66f18d80fb713a48a38b6493d693f633fc1dac0 100644
--- a/milo/buildsource/buildbucket/struct.go
+++ b/milo/buildsource/buildbucket/struct.go
@@ -18,14 +18,14 @@ import (
type buildEntry struct {
// key is formulated via <project ID>:<build ID>. From PubSub, project ID
// is determined via the topic name.
- key string `gae:$id`
+ key string `gae:"$id"`
// buildData is the json marshalled form of
// a bucketApi.ApiCommonBuildMessage message.
- buildbucketData []byte `gae:,noindex`
+ buildbucketData []byte `gae:",noindex"`
// respBuild is the resp.MiloBuild representation of the build.
- respBuild *resp.MiloBuild `gae:,noindex`
+ respBuild *resp.MiloBuild `gae:",noindex"`
// project is the luci project name of the build.
project string
« no previous file with comments | « milo/buildsource/buildbucket/pubsub.go ('k') | milo/buildsource/builder.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698