Merge pull request #26727 from Microsoft/jjh/breakcontinue

Oops, break should have been continue
Upstream-commit: fe0d7e0799f20af220f7da18d17c26cd6ec871b7
Component: engine
This commit is contained in:
Vincent Demeester
2016-09-20 11:43:27 +02:00
committed by GitHub

View File

@ -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
}
}