mirror of
https://github.com/containers/podman.git
synced 2025-09-25 07:44:24 +08:00

* Add response.Body.Close() where needed to release HTTP connections to API server. * Add tests to ensure no general leaks occur. 100% coverage would be required to ensure no leaks on any call. * Update code comments to be godoc correct Signed-off-by: Jhon Honce <jhonce@redhat.com>
26 lines
573 B
Go
26 lines
573 B
Go
package system
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
"github.com/containers/podman/v3/libpod/define"
|
|
"github.com/containers/podman/v3/pkg/bindings"
|
|
)
|
|
|
|
// Info returns information about the libpod environment and its stores
|
|
func Info(ctx context.Context, _ *InfoOptions) (*define.Info, error) {
|
|
conn, err := bindings.GetClient(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
response, err := conn.DoRequest(nil, http.MethodGet, "/info", nil, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
info := define.Info{}
|
|
return &info, response.Process(&info)
|
|
}
|