|
@@ -26,7 +26,7 @@ import (
|
|
|
winlibnetwork "github.com/docker/libnetwork/drivers/windows"
|
|
|
"github.com/docker/libnetwork/netlabel"
|
|
|
"github.com/docker/libnetwork/options"
|
|
|
- blkiodev "github.com/opencontainers/runc/libcontainer/configs"
|
|
|
+ specs "github.com/opencontainers/runtime-spec/specs-go"
|
|
|
"github.com/pkg/errors"
|
|
|
"github.com/sirupsen/logrus"
|
|
|
"golang.org/x/sys/windows"
|
|
@@ -47,7 +47,7 @@ func getPluginExecRoot(root string) string {
|
|
|
return filepath.Join(root, "plugins")
|
|
|
}
|
|
|
|
|
|
-func getBlkioWeightDevices(config *containertypes.HostConfig) ([]blkiodev.WeightDevice, error) {
|
|
|
+func getBlkioWeightDevices(config containertypes.Resources) ([]specs.LinuxWeightDevice, error) {
|
|
|
return nil, nil
|
|
|
}
|
|
|
|