Procházet zdrojové kódy

Merge pull request #13283 from Microsoft/10662-fixbaselinenewdriver

Windows: NewDriver() re-baseline parms
Brian Goff před 10 roky
rodič
revize
19ae59f910

+ 1 - 1
daemon/execdriver/execdrivers/execdrivers_windows.go

@@ -10,7 +10,7 @@ import (
 	"github.com/docker/docker/pkg/sysinfo"
 	"github.com/docker/docker/pkg/sysinfo"
 )
 )
 
 
-func NewDriver(name, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
+func NewDriver(name string, options []string, root, libPath, initPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
 	switch name {
 	switch name {
 	case "windows":
 	case "windows":
 		return windows.NewDriver(root, initPath)
 		return windows.NewDriver(root, initPath)