зеркало из https://github.com/microsoft/docker.git
Minor code simplification for Containers api
This commit is contained in:
Родитель
3885ef585b
Коммит
0013aa7d9f
|
@ -464,14 +464,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
|
||||
|
|
Загрузка…
Ссылка в новой задаче