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

Unified Diff: impl/memory/context.go

Issue 1522783002: Add User Testing interface to impl/memory. (Closed) Base URL: https://github.com/luci/gae.git@logging_service
Patch Set: rebase Created 5 years 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 | « impl/dummy/dummy.go ('k') | impl/memory/user.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/memory/context.go
diff --git a/impl/memory/context.go b/impl/memory/context.go
index 39bfe092c43e711701750481680df5c9477f55e0..baa9c24666938b16e845922afa47119e2fb69341 100644
--- a/impl/memory/context.go
+++ b/impl/memory/context.go
@@ -122,7 +122,7 @@ func UseWithAppID(c context.Context, aid string) context.Context {
c = context.WithValue(c, memContextKey, memctx)
c = context.WithValue(c, memContextNoTxnKey, memctx)
c = context.WithValue(c, giContextKey, &globalInfoData{appid: aid})
- return useTQ(useRDS(useMC(useGI(c, aid))))
+ return useUser(useTQ(useRDS(useMC(useGI(c, aid)))))
}
func cur(c context.Context) (p *memContext) {
« no previous file with comments | « impl/dummy/dummy.go ('k') | impl/memory/user.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698