summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/sentry')
-rw-r--r--pkg/sentry/context/context.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/sentry/context/context.go b/pkg/sentry/context/context.go
index 12bdcef85..7ed6a5e8a 100644
--- a/pkg/sentry/context/context.go
+++ b/pkg/sentry/context/context.go
@@ -108,6 +108,9 @@ func (NoopSleeper) UninterruptibleSleepStart(bool) {}
// UninterruptibleSleepFinish does nothing.
func (NoopSleeper) UninterruptibleSleepFinish(bool) {}
+// bgContext is the context returned by context.Background.
+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
@@ -119,5 +122,5 @@ func (NoopSleeper) UninterruptibleSleepFinish(bool) {}
// Using a Background context for tests is fine, as long as no values are
// needed from the context in the tested code paths.
func Background() Context {
- return logContext{Logger: log.Log()}
+ return bgContext
}