bump engine-api to 772250a752e34cacaeef7c92b8e0ddf43450b629

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Upstream-commit: ed870716324426c5c5de2e12de48515ef8cbcf39
Component: engine
This commit is contained in:
Sebastiaan van Stijn
2016-06-04 14:16:36 +02:00
parent f88056a4aa
commit e951d738d2
2 changed files with 2 additions and 2 deletions

View File

@ -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)
}