summaryrefslogtreecommitdiff
path: root/daemon/daemon.go
diff options
context:
space:
mode:
authorSebastiaan van Stijn <thaJeztah@users.noreply.github.com>2022-09-06 18:49:43 +0200
committerGitHub <noreply@github.com>2022-09-06 18:49:43 +0200
commit670ce6785df50893a53349428440bc8c1aae9db6 (patch)
tree3df600e4c08c608326076c3933463ed371fbc446 /daemon/daemon.go
parent5ba4ba0baf6750b6b5e7a478048457102bdd1835 (diff)
parent878906630bdf9edd58dda0b4a3887da86e4e0da2 (diff)
downloaddocker-670ce6785df50893a53349428440bc8c1aae9db6.tar.gz
Merge pull request #44091 from rumpl/fix-local-context
Wrap local calls to the content and lease service
Diffstat (limited to 'daemon/daemon.go')
-rw-r--r--daemon/daemon.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/daemon.go b/daemon/daemon.go
index d3bd2f6f57..10230b1580 100644
--- a/daemon/daemon.go
+++ b/daemon/daemon.go
@@ -1077,7 +1077,7 @@ func NewDaemon(ctx context.Context, config *config.Config, pluginStore *plugin.S
imgSvcConfig.Leases = d.containerdCli.LeasesService()
imgSvcConfig.ContentStore = d.containerdCli.ContentStore()
} else {
- cs, lm, err := d.configureLocalContentStore()
+ cs, lm, err := d.configureLocalContentStore(config.ContainerdNamespace)
if err != nil {
return nil, err
}