summaryrefslogtreecommitdiffhomepage
path: root/pkg/context
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-04-13 18:05:22 +0000
committergVisor bot <gvisor-bot@google.com>2020-04-13 18:05:22 +0000
commitc2c8729c1838fb30e5cd2a0f2c9689f4abf5b882 (patch)
tree7bcb6692bfab3238b4c89b897d777ef3c09cf8e5 /pkg/context
parent621c6d551f577f98db5d94f4b96e1082c8213533 (diff)
parent6a4d17a31dc209afbbca66e871a7c6dc299c167b (diff)
Merge release-20200323.0-134-g6a4d17a (automated)
Diffstat (limited to 'pkg/context')
-rwxr-xr-xpkg/context/context.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/context/context.go b/pkg/context/context.go
index 23e009ef3..5319b6d8d 100755
--- a/pkg/context/context.go
+++ b/pkg/context/context.go
@@ -127,10 +127,6 @@ func (logContext) Value(key interface{}) interface{} {
var bgContext = &logContext{Logger: log.Log()}
// Background returns an empty context using the default logger.
-//
-// Users should be wary of using a Background context. Please tag any use with
-// FIXME(b/38173783) and a note to remove this use.
-//
// Generally, one should use the Task as their context when available, or avoid
// having to use a context in places where a Task is unavailable.
//