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

Unified Diff: filter/featureBreaker/rds.go

Issue 1270113002: Re-add metadata passthrough on Get operations (Closed) Base URL: https://github.com/luci/gae.git@fix_other_interfaces
Patch Set: cleanup Created 5 years, 4 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 | « filter/count/rds.go ('k') | impl/dummy/dummy.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: filter/featureBreaker/rds.go
diff --git a/filter/featureBreaker/rds.go b/filter/featureBreaker/rds.go
index 92466c16547476fb71c5c8fd681846492de54195..5f8fa64d9582e84b8fab5b6278767e50726f065e 100644
--- a/filter/featureBreaker/rds.go
+++ b/filter/featureBreaker/rds.go
@@ -39,9 +39,9 @@ func (r *dsState) DeleteMulti(keys []ds.Key, cb ds.DeleteMultiCB) error {
})
}
-func (r *dsState) GetMulti(keys []ds.Key, cb ds.GetMultiCB) error {
+func (r *dsState) GetMulti(keys []ds.Key, meta ds.MultiMetaGetter, cb ds.GetMultiCB) error {
return r.run(func() error {
- return r.RawInterface.GetMulti(keys, cb)
+ return r.RawInterface.GetMulti(keys, meta, cb)
})
}
« no previous file with comments | « filter/count/rds.go ('k') | impl/dummy/dummy.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698