mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #2678 from cxmcc/minor
Minor code simplification for Containers api
This commit is contained in:
commit
d6e6214d37
1 changed files with 2 additions and 5 deletions
|
@ -697,14 +697,11 @@ func (srv *Server) Containers(all, size bool, n int, since, before string) []API
|
|||
if !container.State.Running && !all && n == -1 && since == "" && before == "" {
|
||||
continue
|
||||
}
|
||||
if before != "" {
|
||||
if before != "" && !foundBefore {
|
||||
if container.ID == before || utils.TruncateID(container.ID) == before {
|
||||
foundBefore = true
|
||||
continue
|
||||
}
|
||||
if !foundBefore {
|
||||
continue
|
||||
}
|
||||
continue
|
||||
}
|
||||
if displayed == n {
|
||||
break
|
||||
|
|
Loading…
Reference in a new issue