mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1401342f46
The Docker CLI already performs version-checks when running commands, but other clients consuming the API client may not do so. This patch adds a version check to various client functions. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
21 lines
571 B
Go
21 lines
571 B
Go
package client
|
|
|
|
import (
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// ConfigUpdate attempts to update a Config
|
|
func (cli *Client) ConfigUpdate(ctx context.Context, id string, version swarm.Version, config swarm.ConfigSpec) error {
|
|
if err := cli.NewVersionError("1.30", "config update"); err != nil {
|
|
return err
|
|
}
|
|
query := url.Values{}
|
|
query.Set("version", strconv.FormatUint(version.Index, 10))
|
|
resp, err := cli.post(ctx, "/configs/"+id+"/update", query, config, nil)
|
|
ensureReaderClosed(resp)
|
|
return err
|
|
}
|