diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-26 05:11:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-26 05:11:50 -0400 |
commit | bb11b428798094f33b3ec6102d2e52a3baf46324 (patch) | |
tree | bc08687ddf003e3c0b7612ba9e8cffb25f581f5f /pkg/domain/infra/abi/system.go | |
parent | 4db296fab3ca5e201f76931f71ea3bcb58e43a87 (diff) | |
parent | d78e83f47d487c1680ae0e2a1db42ef9d70caf30 (diff) | |
download | podman-bb11b428798094f33b3ec6102d2e52a3baf46324.tar.gz podman-bb11b428798094f33b3ec6102d2e52a3baf46324.tar.bz2 podman-bb11b428798094f33b3ec6102d2e52a3baf46324.zip |
Merge pull request #6756 from mheon/add_dangling_filter
Add support for dangling filter to volumes
Diffstat (limited to 'pkg/domain/infra/abi/system.go')
-rw-r--r-- | pkg/domain/infra/abi/system.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/system.go b/pkg/domain/infra/abi/system.go index 90002326e..0511289ab 100644 --- a/pkg/domain/infra/abi/system.go +++ b/pkg/domain/infra/abi/system.go @@ -330,7 +330,7 @@ func (ic *ContainerEngine) SystemDf(ctx context.Context, options entities.System if err != nil { return nil, err } - inUse, err := v.VolumesInUse() + inUse, err := v.VolumeInUse() if err != nil { return nil, err } |