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

Unified Diff: filter/dscache/ds_txn.go

Issue 2007123002: datastore: Update AllocateIDs to take keys. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/gae@master
Patch Set: Rebase, comments. Created 4 years, 6 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/dscache/ds.go ('k') | filter/dscache/support.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: filter/dscache/ds_txn.go
diff --git a/filter/dscache/ds_txn.go b/filter/dscache/ds_txn.go
index d576849e25b810705b73ac7cb4729bc11391889a..4b7835657caec931a62a186e76e9db2ea7471c8c 100644
--- a/filter/dscache/ds_txn.go
+++ b/filter/dscache/ds_txn.go
@@ -23,7 +23,7 @@ func (d *dsTxnCache) DeleteMulti(keys []*ds.Key, cb ds.DeleteMultiCB) error {
return d.RawInterface.DeleteMulti(keys, cb)
}
-func (d *dsTxnCache) PutMulti(keys []*ds.Key, metas []ds.PropertyMap, cb ds.PutMultiCB) error {
+func (d *dsTxnCache) PutMulti(keys []*ds.Key, metas []ds.PropertyMap, cb ds.NewKeyCB) error {
d.state.add(d.sc, keys)
return d.RawInterface.PutMulti(keys, metas, cb)
}
« no previous file with comments | « filter/dscache/ds.go ('k') | filter/dscache/support.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698