ソースを参照

Merge pull request #34973 from darrenstahlmsft/fixError

Fix error string about containers feature
Sebastiaan van Stijn 7 年 前
コミット
9feef92874
1 ファイル変更1 行追加1 行削除
  1. 1 1
      daemon/daemon_windows.go

+ 1 - 1
daemon/daemon_windows.go

@@ -235,7 +235,7 @@ func checkSystem() error {
 
 
 	vmcompute := windows.NewLazySystemDLL("vmcompute.dll")
 	vmcompute := windows.NewLazySystemDLL("vmcompute.dll")
 	if vmcompute.Load() != nil {
 	if vmcompute.Load() != nil {
-		return fmt.Errorf("Failed to load vmcompute.dll. Ensure that the Containers role is installed.")
+		return fmt.Errorf("failed to load vmcompute.dll, ensure that the Containers feature is installed")
 	}
 	}
 
 
 	return nil
 	return nil