From ed870716324426c5c5de2e12de48515ef8cbcf39 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Sat, 4 Jun 2016 14:16:36 +0200 Subject: [PATCH] bump engine-api to 772250a752e34cacaeef7c92b8e0ddf43450b629 Signed-off-by: Sebastiaan van Stijn --- hack/vendor.sh | 2 +- vendor/src/github.com/docker/engine-api/client/request.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/vendor.sh b/hack/vendor.sh index cfd2a2f698..2b545a5dec 100755 --- a/hack/vendor.sh +++ b/hack/vendor.sh @@ -60,7 +60,7 @@ clone git golang.org/x/net 78cb2c067747f08b343f20614155233ab4ea2ad3 https://gith clone git golang.org/x/sys eb2c74142fd19a79b3f237334c7384d5167b1b46 https://github.com/golang/sys.git clone git github.com/docker/go-units 651fc226e7441360384da338d0fd37f2440ffbe3 clone git github.com/docker/go-connections v0.2.0 -clone git github.com/docker/engine-api 5d8739372315f8147ceb7bcc53576893ff96ffc6 +clone git github.com/docker/engine-api 772250a752e34cacaeef7c92b8e0ddf43450b629 clone git github.com/RackSec/srslog 259aed10dfa74ea2961eddd1d9847619f6e98837 clone git github.com/imdario/mergo 0.2.1 diff --git a/vendor/src/github.com/docker/engine-api/client/request.go b/vendor/src/github.com/docker/engine-api/client/request.go index d50545f955..67147eec89 100644 --- a/vendor/src/github.com/docker/engine-api/client/request.go +++ b/vendor/src/github.com/docker/engine-api/client/request.go @@ -112,7 +112,7 @@ func (cli *Client) sendClientRequest(ctx context.Context, method, path string, q return serverResp, fmt.Errorf("%v.\n* Are you trying to connect to a TLS-enabled daemon without TLS?", err) } - if cli.transport.Secure() && strings.Contains(err.Error(), "remote error: bad certificate") { + if cli.transport.Secure() && strings.Contains(err.Error(), "bad certificate") { return serverResp, fmt.Errorf("The server probably has client authentication (--tlsverify) enabled. Please check your TLS client certification settings: %v", err) }