mirror of
https://github.com/containers/podman.git
synced 2025-06-26 04:46:57 +08:00
correct go-binding key for volumes
the go binding for remove container was using 'vols' for a key to remove volumes associated to the container. the correct key should be "v" and is documented as such. Fixes: #7128 Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
@ -98,7 +98,7 @@ func Remove(ctx context.Context, nameOrID string, force, volumes *bool) error {
|
||||
params.Set("force", strconv.FormatBool(*force))
|
||||
}
|
||||
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)
|
||||
if err != nil {
|
||||
|
@ -142,8 +142,6 @@ EOF
|
||||
|
||||
# Anonymous temporary volumes, and persistent autocreated named ones
|
||||
@test "podman volume, implicit creation with run" {
|
||||
skip_if_remote "FIXME: pending #7128"
|
||||
|
||||
# No hostdir arg: create anonymous container with random name
|
||||
rand=$(random_string)
|
||||
run_podman run -v /myvol $IMAGE sh -c "echo $rand >/myvol/myfile"
|
||||
|
Reference in New Issue
Block a user