From 7330d7eef706b671f0b1107c10b4e8a398203eea Mon Sep 17 00:00:00 2001 From: John Howard Date: Mon, 19 Sep 2016 14:41:27 -0700 Subject: [PATCH] Oops, break should have been continue Signed-off-by: John Howard Upstream-commit: bbbc720620befd1ba6f1ff9b0ac69a590bdac68e Component: engine --- components/engine/libcontainerd/client_windows.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/engine/libcontainerd/client_windows.go b/components/engine/libcontainerd/client_windows.go index f53a421d1c..8bbd96ce98 100644 --- a/components/engine/libcontainerd/client_windows.go +++ b/components/engine/libcontainerd/client_windows.go @@ -96,11 +96,11 @@ func (clnt *client) Create(containerID string, checkpoint string, checkpointDir for _, option := range options { if s, ok := option.(*ServicingOption); ok { configuration.Servicing = s.IsServicing - break + continue } if s, ok := option.(*FlushOption); ok { configuration.IgnoreFlushesDuringBoot = s.IgnoreFlushesDuringBoot - break + continue } }