From 658351133fff4ee890a165b716579507ffdfaa81 Mon Sep 17 00:00:00 2001 From: Darren Stahl Date: Mon, 25 Sep 2017 12:39:27 -0700 Subject: [PATCH] Fix error string about containers feature Signed-off-by: Darren Stahl Upstream-commit: 31405b556f155d8f56902086c7c24efe25dd8de0 Component: engine --- components/engine/daemon/daemon_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/daemon/daemon_windows.go b/components/engine/daemon/daemon_windows.go index c85a1483f2..bbf5383c14 100644 --- a/components/engine/daemon/daemon_windows.go +++ b/components/engine/daemon/daemon_windows.go @@ -235,7 +235,7 @@ func checkSystem() error { vmcompute := windows.NewLazySystemDLL("vmcompute.dll") 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