Description
I'm not sure if this is a bug.
|
resp, err := cli.delete(ctx, "/volumes/"+volumeID, query, nil) |
Shouldn't volumeID be escaped as it is used directly in URL?
I mean something like this:
resp, err := cli.delete(ctx, "/volumes/"+url.QueryEscape(volumeID), query, nil)
Reproduce
does not apply
Expected behavior
does not apply
docker version
docker info
Additional Info
No response
Description
I'm not sure if this is a bug.
moby/client/volume_remove.go
Line 24 in 7c8d02d
Shouldn't
volumeIDbe escaped as it is used directly in URL?I mean something like this:
Reproduce
does not apply
Expected behavior
does not apply
docker version
docker info
Additional Info
No response