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

Unified Diff: filter/count/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 | « no previous file | filter/featureBreaker/rds.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: filter/count/rds.go
diff --git a/filter/count/rds.go b/filter/count/rds.go
index f9b68ca175a6832ade34b9615cb3a30b025c3813..a0c5a45618b781fd1e3422f3b59a66fae14bd1d2 100644
--- a/filter/count/rds.go
+++ b/filter/count/rds.go
@@ -57,8 +57,8 @@ func (r *dsCounter) DeleteMulti(keys []ds.Key, cb ds.DeleteMultiCB) error {
return r.c.DeleteMulti.up(r.ds.DeleteMulti(keys, cb))
}
-func (r *dsCounter) GetMulti(keys []ds.Key, cb ds.GetMultiCB) error {
- return r.c.GetMulti.up(r.ds.GetMulti(keys, cb))
+func (r *dsCounter) GetMulti(keys []ds.Key, meta ds.MultiMetaGetter, cb ds.GetMultiCB) error {
+ return r.c.GetMulti.up(r.ds.GetMulti(keys, meta, cb))
}
func (r *dsCounter) PutMulti(keys []ds.Key, vals []ds.PropertyMap, cb ds.PutMultiCB) error {
« no previous file with comments | « no previous file | filter/featureBreaker/rds.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698