Merge pull request #7222 from baude/issue7128

correct go-binding key for volumes
This commit is contained in:
OpenShift Merge Robot
2020-08-05 01:32:48 +02:00
committed by GitHub
2 changed files with 1 additions and 3 deletions

View File

@ -98,7 +98,7 @@ func Remove(ctx context.Context, nameOrID string, force, volumes *bool) error {
params.Set("force", strconv.FormatBool(*force)) params.Set("force", strconv.FormatBool(*force))
} }
if volumes != nil { if volumes != nil {
params.Set("vols", strconv.FormatBool(*volumes)) params.Set("v", strconv.FormatBool(*volumes))
} }
response, err := conn.DoRequest(nil, http.MethodDelete, "/containers/%s", params, nil, nameOrID) response, err := conn.DoRequest(nil, http.MethodDelete, "/containers/%s", params, nil, nameOrID)
if err != nil { if err != nil {

View File

@ -142,8 +142,6 @@ EOF
# Anonymous temporary volumes, and persistent autocreated named ones # Anonymous temporary volumes, and persistent autocreated named ones
@test "podman volume, implicit creation with run" { @test "podman volume, implicit creation with run" {
skip_if_remote "FIXME: pending #7128"
# No hostdir arg: create anonymous container with random name # No hostdir arg: create anonymous container with random name
rand=$(random_string) rand=$(random_string)
run_podman run -v /myvol $IMAGE sh -c "echo $rand >/myvol/myfile" run_podman run -v /myvol $IMAGE sh -c "echo $rand >/myvol/myfile"