mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
client: ContainerKill(): don't send signal query-param if none was set
Just a small clean-up (there's more endpoints to do this for, but I was working on changes in this area on the CLI when I noticed we were setting this query-parameter unconditionally. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
61404de7df
commit
b365924ec3
1 changed files with 3 additions and 1 deletions
|
@ -8,7 +8,9 @@ import (
|
|||
// ContainerKill terminates the container process but does not remove the container from the docker host.
|
||||
func (cli *Client) ContainerKill(ctx context.Context, containerID, signal string) error {
|
||||
query := url.Values{}
|
||||
if signal != "" {
|
||||
query.Set("signal", signal)
|
||||
}
|
||||
|
||||
resp, err := cli.post(ctx, "/containers/"+containerID+"/kill", query, nil, nil)
|
||||
ensureReaderClosed(resp)
|
||||
|
|
Loading…
Reference in a new issue