Skip to content

Commit

Permalink
Merge pull request #3038 from daniellavoie/release-v0.39
Browse files Browse the repository at this point in the history
Backporting #2868 on release v0.39.x
  • Loading branch information
bobbypage committed Jan 5, 2022
2 parents 4ec9a84 + 11ba5f5 commit 899c56a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions manager/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,10 @@ func (m *manager) GetRequestedContainersInfo(containerName string, options v2.Re
for name, data := range containers {
info, err := m.containerDataToContainerInfo(data, &query)
if err != nil {
if err == memory.ErrDataNotFound {
klog.Warningf("Error getting data for container %s because of race condition", name)
continue
}
errs.append(name, "containerDataToContainerInfo", err)
}
containersMap[name] = info
Expand Down

0 comments on commit 899c56a

Please sign in to comment.