diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-07 19:00:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 19:00:57 +0200 |
commit | 8289805f5dce862219c0b124547a898766a0b55c (patch) | |
tree | ce711014576d651d4ca5fa64119a7ed5902ea5dc /pkg/bindings | |
parent | 44f910c28cae178eab9ad439587355fa4927dab7 (diff) | |
parent | 013ecca8959f94cd97ee694676eeda6439ad38b7 (diff) | |
download | podman-8289805f5dce862219c0b124547a898766a0b55c.tar.gz podman-8289805f5dce862219c0b124547a898766a0b55c.tar.bz2 podman-8289805f5dce862219c0b124547a898766a0b55c.zip |
Merge pull request #5738 from baude/v2info
podmanv2 info
Diffstat (limited to 'pkg/bindings')
-rw-r--r-- | pkg/bindings/system/info.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/bindings/system/info.go b/pkg/bindings/system/info.go index f8269cfd8..13e12645d 100644 --- a/pkg/bindings/system/info.go +++ b/pkg/bindings/system/info.go @@ -9,15 +9,15 @@ import ( ) // Info returns information about the libpod environment and its stores -func Info(ctx context.Context) (define.Info, error) { +func Info(ctx context.Context) (*define.Info, error) { info := define.Info{} conn, err := bindings.GetClient(ctx) if err != nil { - return info, err + return nil, err } response, err := conn.DoRequest(nil, http.MethodGet, "/info", nil) if err != nil { - return info, err + return nil, err } - return info, response.Process(&info) + return &info, response.Process(&info) } |