mirror of
https://github.com/containers/podman.git
synced 2025-06-24 03:08:13 +08:00
Make volume filters inclusive
When using multiple filters, return a volume that matches any one of the used filters, rather than matching both of the filters. This is for compatibility with docker's cli, and more importantly, the apiv2 compat endpoint Closes #6765 Signed-off-by: Ashley Cui <acui@redhat.com>
This commit is contained in:
@ -86,8 +86,8 @@ func (r *Runtime) HasVolume(name string) (bool, error) {
|
||||
|
||||
// Volumes retrieves all volumes
|
||||
// Filters can be provided which will determine which volumes are included in the
|
||||
// output. Multiple filters are handled by ANDing their output, so only volumes
|
||||
// matching all filters are returned
|
||||
// output. If multiple filters are used, a volume will be returned if
|
||||
// any of the filters are matched
|
||||
func (r *Runtime) Volumes(filters ...VolumeFilter) ([]*Volume, error) {
|
||||
r.lock.RLock()
|
||||
defer r.lock.RUnlock()
|
||||
@ -101,11 +101,15 @@ func (r *Runtime) Volumes(filters ...VolumeFilter) ([]*Volume, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if len(filters) == 0 {
|
||||
return vols, nil
|
||||
}
|
||||
|
||||
volsFiltered := make([]*Volume, 0, len(vols))
|
||||
for _, vol := range vols {
|
||||
include := true
|
||||
include := false
|
||||
for _, filter := range filters {
|
||||
include = include && filter(vol)
|
||||
include = include || filter(vol)
|
||||
}
|
||||
|
||||
if include {
|
||||
|
Reference in New Issue
Block a user