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

Unified Diff: impl/prod/context_vm.go

Issue 2460803003: impl/prod: Embed AppEngine SDK into Context. (Closed)
Patch Set: Created 4 years, 2 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
Index: impl/prod/context_vm.go
diff --git a/impl/prod/context_vm.go b/impl/prod/context_vm.go
index 874fc90fcefcf148d5a4e88377af2d7f35829659..cffdde7dc9ce0c2036c9b8032b39754428bde6d7 100644
--- a/impl/prod/context_vm.go
+++ b/impl/prod/context_vm.go
@@ -15,6 +15,10 @@ import (
// implementations which aren't associated with any particular request.
//
// This is only available on Managed VMs.
-func UseBackground(c context.Context) context.Context {
- return setupAECtx(c, appengine.BackgroundContext())
+//
+// In addition, UseBackground installs Google AppEngine SDK Context values into
+// the Context. See the warning in Use for more information on pitfalls related
+// to usage of the raw AppEngine SDKs alongside luci/gae.
+func UseBackground() context.Context {
+ return setupAECtx(appengine.BackgroundContext())
}
« impl/prod/context.go ('K') | « impl/prod/context.go ('k') | impl/prod/everything_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698