summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-08-21 15:27:57 +0200
committerGitHub <noreply@github.com>2020-08-21 15:27:57 +0200
commita8619bbb832646a816a138e0656ca6abdc9ad04e (patch)
tree111c5a5122e76d8f91921b69b32e00d02e4c0e96 /pkg
parent516196f09677819b72d03e068fb8094b28e273aa (diff)
parentfb4977b936a54497434967997f61ae18a1d44373 (diff)
downloadpodman-a8619bbb832646a816a138e0656ca6abdc9ad04e.tar.gz
podman-a8619bbb832646a816a138e0656ca6abdc9ad04e.tar.bz2
podman-a8619bbb832646a816a138e0656ca6abdc9ad04e.zip
Merge pull request #7395 from zhangguanzhang/libpod-api-returns-null
fix /libpod/pods/json returns null when there are no pods
Diffstat (limited to 'pkg')
-rw-r--r--pkg/api/handlers/utils/pods.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/utils/pods.go b/pkg/api/handlers/utils/pods.go
index 8276fb55e..54ebe2d29 100644
--- a/pkg/api/handlers/utils/pods.go
+++ b/pkg/api/handlers/utils/pods.go
@@ -45,7 +45,7 @@ func GetPods(w http.ResponseWriter, r *http.Request) ([]*entities.ListPodsReport
}
if len(pods) == 0 {
- return nil, nil
+ return []*entities.ListPodsReport{}, nil
}
lps := make([]*entities.ListPodsReport, 0, len(pods))