Skip to content

Commit fe0d7e0

Browse files
authored
Merge pull request moby#26727 from Microsoft/jjh/breakcontinue
Oops, break should have been continue
2 parents 374ae5c + bbbc720 commit fe0d7e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcontainerd/client_windows.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ func (clnt *client) Create(containerID string, checkpoint string, checkpointDir
9696
for _, option := range options {
9797
if s, ok := option.(*ServicingOption); ok {
9898
configuration.Servicing = s.IsServicing
99-
break
99+
continue
100100
}
101101
if s, ok := option.(*FlushOption); ok {
102102
configuration.IgnoreFlushesDuringBoot = s.IgnoreFlushesDuringBoot
103-
break
103+
continue
104104
}
105105
}
106106

0 commit comments

Comments
 (0)