From 76886c96d80809f2b379b0136bc5a2273ab4b67b Mon Sep 17 00:00:00 2001 From: Yuhao Fang Date: Sun, 1 Oct 2017 23:11:58 +0800 Subject: [PATCH] fix typo Signed-off-by: Yuhao Fang Upstream-commit: c673319dea5adcb33379b13f8e70c1d157e7c87d Component: engine --- components/engine/daemon/graphdriver/lcow/lcow.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/daemon/graphdriver/lcow/lcow.go b/components/engine/daemon/graphdriver/lcow/lcow.go index 9ae04b1beb..c999d5b145 100644 --- a/components/engine/daemon/graphdriver/lcow/lcow.go +++ b/components/engine/daemon/graphdriver/lcow/lcow.go @@ -226,7 +226,7 @@ func (d *Driver) startServiceVMIfNotRunning(id string, mvdToAdd []hcsshim.Mapped // VM is in the process of terminating. Wait until it's done and and then try again logrus.Debugf("%s: VM with current ID still in the process of terminating: %s", title, id) if err := svm.getStopError(); err != nil { - logrus.Debugf("%s: VM %s did not stop succesfully: %s", title, id, err) + logrus.Debugf("%s: VM %s did not stop successfully: %s", title, id, err) return nil, err } return d.startServiceVMIfNotRunning(id, mvdToAdd, context)