summaryrefslogtreecommitdiff
path: root/libpod/boltdb_state.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-06-14 12:41:38 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-06-14 19:03:51 +0000
commitcdb447bba2b00dfd8f473a38b75115d1cd6ee799 (patch)
treeee81c3329232b7a133ae3bdb7ff89705da2f9710 /libpod/boltdb_state.go
parent8d5da78b0e3518c4ae4ccb1cd6a2c707bf08c49a (diff)
downloadpodman-cdb447bba2b00dfd8f473a38b75115d1cd6ee799.tar.gz
podman-cdb447bba2b00dfd8f473a38b75115d1cd6ee799.tar.bz2
podman-cdb447bba2b00dfd8f473a38b75115d1cd6ee799.zip
Correctly report errors retrieving containers in ps
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #944 Approved by: rhatdan
Diffstat (limited to 'libpod/boltdb_state.go')
-rw-r--r--libpod/boltdb_state.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpod/boltdb_state.go b/libpod/boltdb_state.go
index 805ff90fd..77a17ce12 100644
--- a/libpod/boltdb_state.go
+++ b/libpod/boltdb_state.go
@@ -620,7 +620,7 @@ func (s *BoltState) AllContainers() ([]*Container, error) {
return err
}
- err = allCtrsBucket.ForEach(func(id, name []byte) error {
+ return allCtrsBucket.ForEach(func(id, name []byte) error {
// If performance becomes an issue, this check can be
// removed. But the error messages that come back will
// be much less helpful.
@@ -637,7 +637,6 @@ func (s *BoltState) AllContainers() ([]*Container, error) {
return s.getContainerFromDB(id, ctr, ctrBucket)
})
- return err
})
if err != nil {
return nil, err