Преглед изворни кода

Fix missing import for "scope" package

I believe this happened due to conflicting PR's that got merged without
CI re-running between them.

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Brian Goff пре 1 година
родитељ
комит
f0b89e63b9
2 измењених фајлова са 2 додато и 0 уклоњено
  1. 1 0
      libnetwork/sandbox_store.go
  2. 1 0
      libnetwork/store.go

+ 1 - 0
libnetwork/sandbox_store.go

@@ -9,6 +9,7 @@ import (
 	"github.com/containerd/log"
 	"github.com/containerd/log"
 	"github.com/docker/docker/libnetwork/datastore"
 	"github.com/docker/docker/libnetwork/datastore"
 	"github.com/docker/docker/libnetwork/osl"
 	"github.com/docker/docker/libnetwork/osl"
+	"github.com/docker/docker/libnetwork/scope"
 )
 )
 
 
 const (
 const (

+ 1 - 0
libnetwork/store.go

@@ -7,6 +7,7 @@ import (
 
 
 	"github.com/containerd/log"
 	"github.com/containerd/log"
 	"github.com/docker/docker/libnetwork/datastore"
 	"github.com/docker/docker/libnetwork/datastore"
+	"github.com/docker/docker/libnetwork/scope"
 )
 )
 
 
 func (c *Controller) initStores() error {
 func (c *Controller) initStores() error {